/* 颜色显示区域样式 */
.color-display {
    text-align: center;
    margin: 20px 0;
}

.color-display h3 {
    margin-bottom: 15px;
    color: #333;
}

.color-rectangle {
    width: 200px;
    height: 150px;
    background-color: white; /* 默认白色背景 */
    border: none; /* 无边框 */
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2); /* 阴影效果 */
    margin: 0 auto; /* 水平居中 */
    border-radius: 8px; /* 圆角 */
}
