/* 弹窗-模拟配色 */
#tcPeise {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0,0,0,0.5);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 1000;
    display: none;
}

.peise-container {
    width: 1650px;
    height: 760px;
    background-color: white;
    border-radius: 8px;
    box-shadow: 0 2px 6px rgba(0,0,0,0.15);
    display: flex;
    flex-direction: column;
    font-family: Arial, sans-serif;
}

.peise-header {
    padding: 10px 20px;
    border-bottom: 1px solid #eee;
    position: relative;
    background-color: #1890ff;
    border-radius: 8px 8px 0 0;
}

.peise-title {
    font-size: 16px;
    color: #eee;
}

.peise-close {
    position: absolute;
    top: -8px;
    right: 15px;
    background: none;
    border: none;
    font-size: 40px;
    cursor: pointer;
    color: #555;
}

.peise-close:hover {
    color: white;
}

.peise-main {
    flex: 1;
    display: flex;
    padding: 20px;
    gap: 20px;
	background-color: #f9f9f9;
}

/* 左侧表格区域 */
.peise-table-section {
    flex: 1;
    border: 1px solid #ddd;
    border-radius: 4px;
    padding: 10px;
}

.peise-table {
    width: 100%;
    height: 100%;
    border-collapse: collapse;
}

.peise-table th,
.peise-table td {
    border: 1px solid #ddd;
    padding: 10px;
    text-align: center;
    vertical-align: middle;
}

.peise-table thead th {
    background-color: #e4effe;
    font-weight: bold;
}

/* .color-preview {
    width: 60px;
    height: 60px;
    margin: auto;
    border: 1px solid #ddd;
    background-color: #f0f0f0;
} */

/* 右侧柱状图区域 */
.peise-chart-section {
    flex: 1;
    border: 1px solid #ddd;
    border-radius: 4px;
    padding: 10px;
    display: flex;
    flex-direction: column;
}

.chart-container {
    flex: 1;
    display: flex;
    flex-direction: column;
}

.chart-title {
    text-align: center;
    font-size: 16px;
    font-weight: bold;
    margin-bottom: 10px;
}

.chart-content {
    flex: 1;
    display: flex;
}

.y-axis {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    padding: 5px 0;
    width: 40px;
    font-size: 12px;
    text-align: right;
    padding-right: 5px;
}

.chart-bars {
    flex: 1;
    display: flex;
    justify-content: space-around;
    align-items: flex-end;
    padding-bottom: 20px;
}

.bar-group {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.bar-item {
    display: flex;
    gap: 5px;
    height: 150px;
    align-items: flex-end;
    margin-bottom: 10px;
}

.bar {
    width: 20px;
}

.bar1 {
    background-color: #1890ff;
}

.bar2 {
    background-color: #40a9ff;
}

.bar-label {
    font-size: 12px;
}

/* 底部输入区域 */
.peise-footer {
    height: 200px;
    padding: 16px 20px;
    border-top: 1px solid #eee;
    display: flex;
    gap: 30px;
    background-color: #ffffff;
}

.target-color-input {
	height: 120px;
    flex: 1;
    padding: 15px;
    border-radius: 4px;
	border: 1px solid #1890ff;
	margin-top: 20px;
}

.target-color-input.active {
    background-color: #e6f7ff;
    border: 1px solid #1890ff;
    box-shadow: 0 0 0 2px rgba(24, 144, 255, 0.2);
}

.input-label {
    display: block;
    margin-bottom: 10px;
    font-size: 14px;
    color: #333;
}

.input-group {
    /* display: flex;
    
    gap: 10px; */
	align-items: center;
}

.input-group label {
    font-size: 14px;
    color: #333;
}

.color-input {
    padding: 6px 12px;
    border: 1px solid #ddd;
    border-radius: 4px;
    font-size: 14px;
    width: 95px;
}

.color-input:focus {
    border-color: #1890ff;
    outline: none;
    box-shadow: 0 0 0 2px rgba(24, 144, 255, 0.2);
}

.color-square {
	display: inline-block;
	width: 260px;height: 135px;
	/* border: 1px dashed #c0c0c0; */
	margin-top: 10px;
	border-radius: 5px;
}

.text-align-right {text-align: right;}
.justify-content-end {justify-content: flex-end;}

.target-color-input-1 {display: inline-block;background-color: #bfdbfe;border-radius: 5px;width:25px;height: 35px;line-height: 35px;border: 1px solid #bfdbfe;padding: 0;font-size: 15px;text-align: center;}

.backcolor-blue {background-color: #e4effe;}
.backcolor-tianlan {background-color: #e6f7ff;}
/* .border-dash {border: 1px dashed #c0c0c0;background-color: #000000} */





























