﻿* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}
body {
    font-family: 'Helvetica Neue', Helvetica, 'PingFang SC', 'Hiragino Sans GB', 'Microsoft YaHei', sans-serif;
    background-color: #fafafa;
}
#app {
    height: 100vh;
    display: flex;
}
.sidebar {
    width: 240px;
    background: linear-gradient(180deg, #1890ff 0%, #36cfc9 100%);
    box-shadow: 4px 0 12px rgba(24, 144, 255, 0.15);
    position: relative;
    transition: all 0.5s ease;
    z-index: 10;
    /*display: flex;
	overflow: hidden;
    flex-direction: column;*/
}

.sidebar::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grid" width="10" height="10" patternUnits="userSpaceOnUse"><path d="M 10 0 L 0 0 0 10" fill="none" stroke="rgba(255,255,255,0.1)" stroke-width="1"/></pattern></defs><rect width="100" height="100" fill="url(%23grid)"/></svg>');
    opacity: 0.58;
}
.logo {
	height: 158px;
    display: block;
    align-items: center;
    justify-content: center;
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
    position: relative;
    z-index: 1;
    align-content: center;
    flex-wrap: wrap;
    flex-direction: row;
	text-align: center;

}
.logo h2 {
    color: white;
    font-size: 22px;
    font-weight: 600;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
    letter-spacing: 1px;
    height: 48px;
    line-height: 48px;
}
.sidebar-menu {
    border: none;
    background: transparent;
    position: relative;
    z-index: 1;
}
.sidebar-menu .el-menu-item {
    height: 60px;
    margin: 4px 12px;
    border-radius: 12px;
    color: rgba(255, 255, 255, 0.9);
    font-size: 16px;
    font-weight: 500;
    transition: all 0.3s ease;
    border: 1px solid transparent;
}
.sidebar-menu .el-menu-item:hover {
    background: rgba(255, 255, 255, 0.15) !important;
    color: white !important;
    border-color: rgba(255, 255, 255, 0.3);
    transform: translateX(4px);
}
.sidebar-menu .el-menu-item.is-active {
    background: rgba(255, 255, 255, 0.2) !important;
    color: white !important;
    border-color: rgba(255, 255, 255, 0.4);
    box-shadow: 0 4px 12px rgba(255, 255, 255, 0.2);
}
.sidebar-menu .el-menu-item .el-icon {
    font-size: 22px;
    margin-right: 12px;
}
.sidebar-menu .el-menu-item span {
    font-size: 16px;
}
.main-content {
    flex: 1;
    display: flex;
    flex-direction: column;
	width: calc(100% - 240px);/* 减去侧边栏的宽度 */
	z-index: 11;/* 要比sidebar高 */
}
.header {
    height: 80px;
    background: linear-gradient(135deg, #409eff 0%, #66b1ff 100%);
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 30px;
    border-bottom: 2px solid #d9ecff;
    box-shadow: 0 2px 8px rgba(64, 158, 255, 0.15);
    position: relative;
    z-index: 20;
}

.header h3 {
    color: white;
    font-size: 24px;
    font-weight: 600;
    margin: 0;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    position: relative;
    z-index: 1;
}
.header-info {
    display: flex;
    align-items: center;
    gap: 20px;
    position: relative;
    z-index: 1;
}
.header-stats {
    display: flex;
    gap: 15px;
}
.stat-badge {
    background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: 20px;
    padding: 6px 15px;
    color: white;
    font-size: 14px;
    font-weight: 500;
    display: flex;
    align-items: center;
    gap: 8px;
    transition: all 0.3s ease;
}
.stat-badge:hover {
    background: rgba(255, 255, 255, 0.3);
    transform: translateY(-2px);
}
.stat-badge .el-icon {
    font-size: 16px;
}
.user-info {
    display: flex;
    align-items: center;
    gap: 12px;
    color: white;
    font-size: 14px;
    padding: 8px 16px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    transition: all 0.3s ease;
}

.user-info:hover {
    background: rgba(255, 255, 255, 0.15);
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.login-prompt {
    display: flex;
    align-items: center;
    gap: 12px;
    color: white;
    font-size: 14px;
    padding: 8px 16px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    transition: all 0.3s ease;
}

.login-prompt:hover {
    background: rgba(255, 255, 255, 0.15);
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.login-text {
    color: rgba(255, 255, 255, 0.9);
    font-size: 14px;
    font-weight: 500;
    letter-spacing: 0.5px;
}

.wechat-login-btn {
    background: linear-gradient(135deg, #07c160 0%, #05a854 100%) !important;
    border: none !important;
    border-radius: 5px !important;
    padding: 1px 16px !important;
    height: 58px;
    font-size: 16px;
    font-weight: 500 !important;
    letter-spacing: 0.5px !important;
    transition: all 0.3s ease !important;
    box-shadow: 0 2px 8px rgba(7, 193, 96, 0.3) !important;
}

.wechat-login-btn:hover {
    transform: translateY(-2px) !important;
    box-shadow: 0 4px 16px rgba(7, 193, 96, 0.4) !important;
    background: linear-gradient(135deg, #06b456 0%, #049749 100%) !important;
}

.wechat-login-btn .el-icon {
    margin-right: 6px !important;
    font-size: 16px !important;
}

.wechat-loginOut-btn {
    border: none !important;
    border-radius: 5px !important;
    padding: 0 0px !important;
    height: 40px;
    width: 128px;
    font-size: 16px;
    font-weight: 500 !important;
    letter-spacing: 0.5px !important;
    transition: all 0.3s ease !important;
    box-shadow: 0 2px 8px rgba(7, 193, 96, 0.3) !important;
}

.wechat-loginOut-btn:hover {
    transform: translateY(-2px) !important;
    box-shadow: 0 4px 16px rgba(7, 193, 96, 0.4) !important;
}

/* 快递管理弹窗样式，把选择表也放这里 */
.express-management-content,.table1-management-content, {
    max-height: 400px;
    overflow-y: auto;
}

.management-header {
    margin-bottom: 20px;
    padding: 10px;
    background: #f8f9fa;
    border-radius: 8px;
    border-left: 4px solid #1890ff;
}

.management-header p {
    margin: 0;
    color: #666;
    font-size: 14px;
}

.express-list,.table1-list {
    display: flex;
    flex-direction: column;
    gap: 12px;
	height: 500px;
    overflow-x: auto;
}

.express-item,.table1-item {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 12px;
    background: #fafafa;
    border-radius: 8px;
    border: 1px solid #e8e8e8;
    transition: all 0.3s ease;
}

.express-item:hover,.table1-item:hover {
    background: #f0f2f5;
    border-color: #d9d9d9;
    transform: translateY(-1px);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.express-info {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.express-name {
    font-size: 16px;
    font-weight: 600;
    color: #333;
}

.express-cpCode {
    font-size: 12px;
    color: #999;
    background: #e8f4fd;
    padding: 2px 6px;
    border-radius: 4px;
    display: inline-block;
    width: fit-content;
}

/* Switch 组件样式优化 */
.express-item .el-switch {
    transform: scale(1.2);
}

/* 加载状态样式 */
.loading-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(255, 255, 255, 0.99);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 9999;
}

.loading-spinner {
    text-align: center;
}

.spinner {
    width: 40px;
    height: 40px;
    border: 4px solid #f3f3f3;
    border-top: 4px solid #1890ff;
    border-radius: 50%;
    animation: spin 1s linear infinite;
    margin: 0 auto 20px;
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

.loading-spinner p {
    color: #666;
    font-size: 16px;
}

.user-name {
    font-weight: 600;
    color: rgba(255, 255, 255, 0.95);
    letter-spacing: 0.5px;
}

.user-info .el-dropdown .el-icon {
    color: rgba(255, 255, 255, 0.8);
    transition: color 0.3s ease;
    cursor: pointer;
}

.user-info .el-dropdown:hover .el-icon {
    color: rgba(255, 255, 255, 1);
    transform: translateY(1px);
}

/* 设置入口样式 */
.settings-section {
    padding: 0px 0;
    background: #f8f9fa;
    border-radius: 12px;
    margin: 20px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    border: 1px solid #ebeef5;
    overflow: hidden;
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
	z-index: 101;
}

.settings-section .settings-header {
    padding: 16px 20px;
    background: #f0f2f5;
    border-bottom: 1px solid #e4e7ed;
}

.settings-section .settings-header h4 {
    color: #606266;
    font-size: 16px;
    font-weight: 600;
    margin: 0;
}

.settings-section .settings-options {
    display: flex;
    flex-direction: column;
    padding: 8px 0;
}

.settings-section .setting-option {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 20px;
    background: transparent;
    border: none;
    color: #606266;
    cursor: pointer;
    transition: all 0.3s ease;
}

.settings-section .setting-option:hover {
    background: #f5f7fa;
    color: #1890ff;
}

.settings-section .setting-option .el-icon {
    font-size: 18px;
    color: inherit;
}

.settings-section .setting-option span {
    font-size: 14px;
    font-weight: 500;
}

.settings-header {
    padding: 15px;
    border-bottom: 1px solid #ebeef5;
    background: #f5f7fa;
}

.settings-header h4 {
    margin: 0;
    color: #303133;
    font-size: 14px;
    font-weight: 600;
}

.settings-options {
    padding: 8px 0;
}

.setting-option {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 12px 15px;
    cursor: pointer;
    transition: background-color 0.2s ease;
    color: #606266;
}

.setting-option:hover {
    background-color: #f5f7fa;
    color: #409eff;
}

.setting-option .el-icon {
    font-size: 16px;
    color: #909399;
}

.setting-option:hover .el-icon {
    color: #409eff;
}

.setting-option span {
    font-size: 13px;
    font-weight: 500;
}

/* 微信登录弹窗样式 */
.wechat-login-dialog .el-dialog {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    margin: 0 !important;
}

.wechat-login-dialog .el-dialog__header {
    text-align: center;
    border-bottom: 1px solid #ebeef5;
    padding: 15px 20px;
}

.wechat-login-dialog .el-dialog__body {
	height: 408px;
    padding: 30px;
}
.user-avatar {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.2);
    display: flex;
    align-items: center;
    justify-content: center;
    border: 2px solid rgba(255, 255, 255, 0.3);
}
.content {
    flex: 1;
    padding: 20px;
    overflow-y: auto;
}


/* 简洁表格行悬停效果 */
table.data-table tbody tr:hover {
    background-color: #f5f9ff !important;
    cursor: pointer !important;
}

table.data-table tbody tr:hover td {
    color: #1890ff !important;
}

/* 表格行悬停效果 */
.el-table__header th {
  background-color: #f5f7fa !important; /* 背景色 */
  color: #333; /* 字体颜色 */
  font-size: 16px; /* 字体大小 */
  text-align: center !important;
}

.el-table .el-table__body tr:hover > td {
    background-color: #bee6ff !important; /* 浅蓝色背景 */
    color: #409EFF; /* 文字颜色 */
}


/* 弹窗表格行点击效果 */
.el-dialog table tbody tr:active {
    background-color: #bae7ff !important;
    transform: scale(1);
    box-shadow: 0 1px 4px rgba(24, 144, 255, 0.3);
}

.el-dialog .el-checkbox{
	transform: scale(1.58);
}

/* 确保表格基础样式 */
table.data-table {
    border-collapse: collapse;
    width: 100%;
}

table.data-table th,
table.data-table td {
    padding: 12px;
    border: 1px solid #ebeef5;
    text-align: center;
}

table.data-table th {
    background-color: #f5f7fa;
    font-weight: bold;
}

table.data-table tbody tr:nth-child(even) {
    background-color: #fafafa;
}

table.data-table tbody tr:nth-child(odd) {
    background-color: #ffffff;
}

@keyframes shimmer {
    0% { opacity: 0.1; }
    50% { opacity: 0.2; }
    100% { opacity: 0.1; }
}
.page-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
}
.stats-cards {
    margin-bottom: 20px;
}
.stat-card {
    border-radius: 8px;
    border: 1px solid #e6f7ff;
}
.stat-content {
    display: flex;
    align-items: center;
    padding: 0px;
}
.stat-icon {
    width: 50px;
    height: 50px;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 15px;
}
.stat-value {
    font-size: 58px;
    font-weight: bold;
    color: #1890ff;
    margin-bottom: 5px;
}
.stat-label {
    font-size: 24px;
    color: #666;
}
.charts-section {
    margin-top: 20px;
}
.chart-container {
    height: 300px;
    width: 100%;
}


.wechat-login-content {
    text-align: center;
    padding: 20px 0;
}

.qr-code-container {
    margin-bottom: 20px;
}

.qr-code {
    display: inline-block;
    background: white;
    padding: 20px;
    border-radius: 12px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    margin-bottom: 15px;
}

.qr-code-image {
    width: 200px;
    height: 200px;
    background: #f8f9fa;
    border-radius: 8px;
    position: relative;
    overflow: hidden;
}

.qr-pattern {
    width: 100%;
    height: 100%;
    position: relative;
}

.qr-corner {
    position: absolute;
    width: 40px;
    height: 40px;
    border: 4px solid #07c160;
    border-radius: 8px;
}

.qr-corner.top-left {
    top: 10px;
    left: 10px;
    border-right: none;
    border-bottom: none;
}

.qr-corner.top-right {
    top: 10px;
    right: 10px;
    border-left: none;
    border-bottom: none;
}

.qr-corner.bottom-left {
    bottom: 10px;
    left: 10px;
    border-right: none;
    border-top: none;
}

.qr-dots {
    position: absolute;
    top: 60px;
    left: 60px;
    width: 80px;
    height: 80px;
    display: grid;
    grid-template-rows: repeat(15, 1fr);
    gap: 1px;
}

.qr-row {
    display: grid;
    grid-template-columns: repeat(15, 1fr);
    gap: 1px;
}

.qr-dot {
    width: 4px;
    height: 4px;
    background: #f8f9fa;
    border-radius: 1px;
    transition: all 0.3s ease;
}

.qr-dot.black {
    background: #333;
}

.qr-tip {
    margin-top: 15px;
}

.qr-tip p {
    margin: 5px 0;
    color: #666;
    font-size: 14px;
}

.qr-tip .scan-tip {
    color: #999;
    font-size: 12px;
}

.login-status {
    margin-top: 15px;
}

.avatar-uploader {
    border: 1px dashed #d9d9d9;
    border-radius: 6px;
    cursor: pointer;
    position: relative;
    overflow: hidden;
    width: 100px;
    height: 100px;
}
.avatar-uploader:hover {
    border-color: #1890ff;
}
.avatar-uploader-icon {
    font-size: 28px;
    color: #8c939d;
    width: 100px;
    height: 100px;
    line-height: 100px;
    text-align: center;
}
.avatar {
    width: 100px;
    height: 100px;
    display: block;
}


/* 表信息样式 */
.table-info {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.currentTableName {
    font-weight: 500;
}

/* 管理表选择样式 */
.table-select-content {
    padding: 20px 0;
}

.table-list {
    margin: 20px 0;
}

.table-item {
    display: flex;
    align-items: center;
    padding: 16px;
    border: 1px solid #e6e6e6;
    border-radius: 8px;
    margin-bottom: 12px;
    cursor: pointer;
    transition: all 0.3s ease;
}
.table-item .vipSpec {
	position: absolute;
    right: 0;
    bottom: 0;
    margin: 5px;
    font-size: 14px;
    color: #00000088;
    font-family: sans-serif;
}
.table-item:hover {
    border-color: #1890ff;
    background-color: #f5f8ff;
}

.table-avatar {
    margin-right: 16px;
}

.table-info {
    flex: 1;
}

.table-name {
    font-weight: 600;
    font-size: 16px;
    margin-bottom: 4px;
}

.table-creator {
    font-size: 14px;
    color: #666;
}

.table-action {
    margin-left: 16px;
}

.new-table-option {
    display: inline-flex;
    padding: 16px;
    border: 2px dashed #e6e6e6;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.3s ease;
    gap: 8px;
    color: #1890ff;
    font-weight: 500;
    width: 100%;
    text-align: center;
    align-content: center;
    justify-content: center;
    align-items: center;
    margin-top: 10px;
}

.new-table-option:hover {
    border-color: #1890ff;
    background-color: #f5f8ff;
}

/* 平台的小标 */
.platformLabel{
	padding: 0px 8px;
    color: #ffffff;
    border-radius: 3px;
    font-size: 13px;
    height: 24px !important;
    line-height: 24px;
    display: inline-block;
    margin: 5px 0;
}
.pfLabel0 {
    color: #585858;
}
.pfLabel1 {
    background: #282828;
}
.pfLabel2 {
    background: #ff5b1f;
}
.pfLabel3 {
    background: #ff2442;
}
.pfLabel4 {
    background: #07c160;
}
.pfLabel8 {
    background: #282828;
}
.pfLabel9 {
    background: mediumpurple;
}
/* 邮寄进度的标 */
.expressProcessLabel{
    padding: 0px 8px;
    height: 26px;
    font-size: 13px;
    font-family: serif;
    line-height: 26px;
    border-radius: 5px;
    display: inline-block;
}
/*
{ pID: 1, label: '等待邮寄样品' },
{ pID: 2, label: '已邮寄等待收货' },
{ pID: 3, label: '已收货等待素材产出' },
{ pID: 4, label: '素材产出等审稿' },
{ pID: 5, label: '审稿通过等待发布' },
{ pID: 6, label: '发布成功' }
*/
.epLabel1{
            background-color: #fff9e6;
            color: #b38f00;
			border:1px solid #b38f0099;
}
.epLabel2{
            background-color: #e6f7ff;
            color: #0066cc;
			border:1px solid #0066cc99;
}
.epLabel3{
            background-color: #f6ffed;
            color: #389e0d;
			border:1px solid #389e0d99;
}
.epLabel4{
            background-color: #f9f0ff;
            color: #722ed1;
			border:1px solid #722ed199;
}
.epLabel5{
            background-color: #fff2e8;
            color: #d46b08;
			border:1px solid #d46b0899;
}
.epLabel6{
            background-color: #389e0d;
            color: #f6ffed;
}

/* 负责人的头像 */
.PIC{
	display: flex;
    justify-content: space-between;
    flex-direction: row-reverse;
    align-content: center;
    align-items: center;
}
.PIC .nickName {
    font-size: 13px;
}
.avatarURL4PIC{
	border-radius: 18px;
    width: 36px;
    box-shadow: 0 0 4px 1px #CCC;
    margin: 4px;
}

.productIMG{
	height: 80px !important;
    width: 80px !important;
	display: inline-block;
    overflow: hidden;
    position: relative;
    border-radius: 5px;
    box-shadow: 0px 0px 5px 1px #888;
	margin: 5px;
}

/* 疑似签收的钩子 */
.suspectedSign{
	color: cornflowerblue;
    font-size: 20px;
    font-weight: 600;
    padding: 12px;
    text-align: center;
}
/* 每个产品的标签 */
.product1Label {
    background: #ecf5ff;
    color: #50a9ff;
    border: 1px solid #50a9ff;
    padding: 2px 5px;
    font-size: 13px;
    margin: 2px;
    display: inline-block;
    border-radius: 4px;
}

.waybillCode{
width: 100%;
    height: 38px;
    line-height: 58px;
    display: flex;
    flex-wrap: nowrap;
    align-content: center;
    justify-content: space-between;
    align-items: center;
    flex-direction: row-reverse;
}
.waybillCode .e56{
	height: 24px;
    min-width: 30px;
    font-size: 12px;
    padding: 0 2px;
}
.logisticsInfo{
overflow-y: scroll;
    height: 58px;
    white-space: break-spaces;
    line-height: 13px;
    padding: 4px;
    text-align: left;
    max-width: 100%;
    text-overflow: ellipsis;
    font-size: 12px;
}

/* 弹窗带图片的 */
.message-content {
	display: flex;
	align-items: flex-start;
	gap: 15px;
	padding: 10px 0;
}

.message-icon {
	width: 40px;
	height: 40px;
	flex-shrink: 0;
}

.message-text {
	flex: 1;
}

.message-title {
	font-weight: bold;
	margin-bottom: 5px;
	color: #303133;
}

.message-desc {
	color: #606266;
	line-height: 1.5;
}
/* 按钮禁用，统一风格 */
button:disabled {
    background: #c0c4cc !important;
    border: 0 !important;
    color: #909399 !important;
    cursor: not-allowed !important;
    transform: none !important;
    opacity: 0.7;
}

/* 版本介绍 */
.vasTable {
  width: 100%;
  border-collapse: collapse;
  margin: 20px 0;
}

.vasTable th, .vasTable td {
  border: 1px solid #ebeef5;
  padding: 12px 15px;
  text-align: center;
}

.vasTable th {
  background-color: #f5f7fa;
  color: #606266;
  font-weight: 600;
}

.vasTable td:first-child {
  text-align: right;
  background-color: #fafafa;
  font-weight: 500;
}

.vasTable .feature-name {
  text-align: right;
  background-color: #fafafa;
  font-weight: 500;
}

.checkmark {
  color: #67c23a;
  font-weight: bold;
  width: 88px;
}

.cross {
  color: #f56c6c;
  font-weight: bold;
  width: 88px;
}

.feature-limit {
  color: #e6a23c;
  font-weight: bold;
}

.order-button {
  flex: 1;
  margin: 0 5px;
}

.original-price {
  text-decoration: line-through;
  color: #909399;
  font-size: 0.9em;
  margin-left: 5px;
}

.current-price {
  color: #f56c6c;
  font-weight: bold;
}

.instructions {
  background-color: #f0f9ff;
  border-left: 4px solid #409eff;
  padding: 15px;
  margin: 20px 0;
  text-align: left;
  border-radius: 4px;
}

.instructions h4 {
  margin-top: 0;
  color: #409eff;
}

/* 不同版本的选择表的时候的风格 */
.tableList1{
    min-width: 300px;
    border-radius: 8px;
    padding: 20px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    position: relative;
    overflow: hidden;
	border:1px solid #FFFFFF00
}
.tableList1::before {
	background111: linear-gradient(90deg, #ffffff00 28%, #42a5f5);
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	height: 4px;
}
._v1 {
    background: linear-gradient(135deg, #ffffff00 58%, #e1f5e1 100%);
    border: 0px solid #e8f5e8;
}
._v1::before {
    background: linear-gradient(90deg, #ffffff00 28%, #66bb6a);
}
._v1 button{
	background-color: #4caf50;
	color: white;
	border:none;
}
._v1 button:hover {
	background-color: #43a047;
}
._v1:hover {
	border: 1px solid #66bb6a;
}
._v2 {
	background: linear-gradient(135deg, #ffffff00 58%, #d4e9fa 100%);
	border: 0px solid #e1f0ff;
}
._v2::before {
    background: linear-gradient(90deg, #ffffff00 28%, #42a5f5);
}
._v2 button {
	background-color: #2196f3;
	color: white;
	border:none;
}
._v2 button:hover {
	background-color: #1e88e5;
}
._v2:hover {
	border: 1px solid #42a5f5;
}

._v3 {
	background: linear-gradient(135deg, #ffffff00 58%, #f3e5f5 100%);
	border: 0px solid #f0e6ff;
}
._v3::before {
    background: linear-gradient(90deg, #ffffff00 28% , #ab47bc);
}
._v3 button {
	background: linear-gradient(90deg, #9c27b0, #ab47bc);
	color: white;
	border:none;
}
._v3 button:hover {
	background: linear-gradient(90deg, #8e24aa, #9c27b0);
}
._v3:hover {
	border: 1px solid #ab47bc;
}
/* 自动推送的背景？ */
.autoPush{
    border-top: 4px solid deepskyblue;
    border-radius: 5px;
}


.colleagues{
	display: flex;
    align-items: center;
    justify-content: flex-end;
    flex-direction: row-reverse;
}
/* 鼠标经过时的图片展示 */
.product-image {
    width: 188px;
}

.productList4sample{
	display: flex;
    flex-wrap: wrap;
    align-content: center;
    justify-content: space-between;
    align-items: center;
    height: 50px;
}

/* 重写一下过滤小弹窗的按钮风格 */
.el-table-filter__bottom{
padding: 6px;
    display: flex;
    justify-content: space-between;
}
.el-table-filter__bottom button{
    width: 49% !important;
    border: 1px solid #CCC;
    border-radius: 5px;
}


/* 常用对话框 */
.dialog-normal-content, {
    max-height: 400px;
    overflow-y: auto;
}

.dialog-normal-header {
    margin-bottom: 20px;
    padding: 10px;
    background: #f8f9fa;
    border-radius: 8px;
    border-left: 4px solid #1890ff;
}

.dialog-normal-header p {
    margin: 0;
    color: #666;
	font-size: 15px;
    line-height: 28px;
}
.dialog-normal-row{
	margin:10px 0;
}

/* 打印的对话框，开始 */
 /* 重置样式 */
    .freePrint-reset {
      box-sizing: border-box;
      margin: 0;
      padding: 0;
    }
    
    /* 主容器 */
    .freePrint-container {
      max-width: 1200px;
      margin: 0 auto;
    }
    
    /* 头部样式 */
    .freePrint-header {
      text-align: center;
      margin-bottom: 20px;
    }
    
    /* 演示按钮 */
    .freePrint-demo-button {
      padding: 10px 20px;
      background-color: #409eff;
      color: white;
      border: none;
      border-radius: 4px;
      cursor: pointer;
      font-size: 16px;
    }
    
    .freePrint-demo-button:hover {
      background-color: #66b1ff;
    }
    
    /* 地址解析区域 */
    .freePrint-address-parse-section {
      display: flex;
      margin-bottom: 20px;
    }
    
    .freePrint-address-input {
      flex: 1;
      margin-right: 10px;
    }
    
    .freePrint-parse-button {
      width: 120px;
    }
    
    /* 表单行 */
    .freePrint-form-row {
      display: flex;
      margin-bottom: 15px;
    }
    
    .freePrint-form-item {
      flex: 1;
      margin-right: 15px;
    }
    
    .freePrint-form-item:last-child {
      margin-right: 0;
    }
    
    .freePrint-full-width {
      width: 100%;
    }
    
    /* 其他区县样式 */
    .freePrint-other-district {
      margin-top: 10px;
    }
    
    /* 操作按钮 */
    .freePrint-action-buttons {
      display: flex;
      justify-content: flex-end;
      margin-top: 20px;
    }
    
    .freePrint-print-button {
      width: 150px;
    }
    
    /* 信息栏 */
    .freePrint-info-bar {
      margin-top: 20px;
      padding: 10px;
      background-color: #f0f2f5;
      border-radius: 4px;
      display: flex;
      justify-content: space-between;
    }
    
    .freePrint-info-item {
      display: flex;
      align-items: center;
    }
    
    .freePrint-info-label {
      font-weight: bold;
      margin-right: 5px;
    }
    
    /* 对话框底部 */
    .freePrint-dialog-footer {
      display: flex;
      justify-content: space-between;
      align-items: center;
    }
    
    /* 物品名称输入框 */
    .freePrint-item-name-input {
      width: 100%;
    }
	
/* 打印的对话框，结束 */

.address14print{
    background: aliceblue;
    width: 100%;	
}

.sidebarToggle{
	position: absolute;
    left: 0;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #FFF;
    background: #ffffff18;
    border-radius: 5px;
    font-size: 12px;
    padding: 0 3px;
}
.sidebarToggle:hover{
	cursor:pointer;
}
.customizeField {
    display: inline-block;
}


/* 右键菜单样式 */
.context-menu {
	position: fixed;
	background: white;
	border: 1px solid #e4e7ed;
	border-radius: 4px;
	box-shadow: 0 2px 12px 0 rgba(0,0,0,.1);
	z-index: 2000;
	min-width: 150px;
	padding: 5px 0;
}
.menu-item {
	padding: 8px 12px;
	cursor: pointer;
	display: flex;
	align-items: center;
}
.menu-itemA:hover {
	background: #bee6ff;
}
.menu-divider {
	height: 1px;
	background: #e4e7ed;
	margin: 5px 0;
}
.menu-item.divider {
background-image: linear-gradient(45deg, transparent 50%, #EEE 50%);
    background-size: 5px 1px;
    height: 1px !important;
    display: block;
    width: 100%;
    padding: 0;
    margin: 0;
}

.customizeField{
	color:red;
	display: contents;
}
.customizeFieldBlue{
	color:blue;
	display: contents;
}
.customizeField::before {
content: "自定义";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    font-size: 19px;
    font-weight: bold;
    color: rgb(0 0 0 / 8%);
    display: flex;
    justify-content: left;
    align-items: center;
    transform: rotate(350deg);
}

.feishuLabel{
	color:#FFF;font-size: 34px;font-weight: 600;
}
.feishuValue{
	color:#FFF;font-size: 128px;
}
.sampleList .drID {
	text-align: left;
    /*background: linear-gradient(to right, #EFEFEF 0%, #ffffff00 100%);*/
    padding-left: 10px;
    font-size: 12px;
}
.sampleList .drNick {
    text-align: right;
	background: linear-gradient(to right, #ffffff00 0%, #DDD 100%);
    padding-right: 10px;
}