#colorOptions {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-top: 10px;
    margin-bottom: 10px;
    flex-wrap: wrap;
}
.colorOption {
    width: 25px;
	font-size: 90%;
    border: 1px solid #333;
    cursor: pointer;
    position: relative;
    margin-top: 5px;
    margin-bottom: 5px;
}
.colorOption:hover {
    transform: scale(1.1);
}
/* 隐藏原生单选按钮 */
.colorOption input[type="radio"] {
    opacity: 0;
    position: absolute;
    width: 100%;
    height: 100%;
    margin: 0;
    cursor: pointer;
}
/* 选中状态样式 */
.colorOption input[type="radio"]:checked + .color-indicator::after {
    content: "✓";
    position: absolute;
    top: -3px;
    right: -3px;
    background: white;
    border-radius: 50%;
    width: 12px;
    height: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 90%;
    border: 1px solid #333;
}
#selectedColorText {
    text-align: center;
    margin-top: 10px;
    font-size: 90%;
}










@media (max-width: 599px) { 






 
.colorOption {
    width: 15px;
	font-size: 90%;
    border: 1px solid #333;
    cursor: pointer;
    position: relative;
    margin-top: 0px;
    margin-bottom: 0px;
}
 





}