#list-page{

	.tag-yellow {
	    background-color: #ffc107;  /* 淡黄色背景 */
	    color: #333333;  /* 白色文字 */
	    padding: 4px 4px;
	    border-radius: 4px;
	    font-size: 10px;
	}


	.card .position-absolute {
	    transition: all 0.3s ease-in-out;
	    background-color: rgba(255, 255, 255, 0.5);  /* 半透明的白色背景 */
	}

	/* 按钮激活状态 */
	.btn-check:checked+.btn,
	.btn.active,
	.btn.show,
	.btn:first-child:active,
	:not(.btn-check)+.btn:active {
	    background-color: #e5566d  !important;
	    border-color: #e5566d  !important;
	    color: var(--contrast-color)  !important;
	}

	/* 年龄段快捷标签样式 */
	#age-shortcuts .age-shortcut {
	    cursor: pointer;
	    margin-left: 3px;
	    font-size: 0.7rem;
	    padding: 2px 4px;
	    color: #fff;
	    border-radius: 4px;
	    font-weight: bold;
	    transition: all 0.3s ease-in-out;
	}

	#age-shortcuts .age-shortcut:hover {
	    opacity: 0.9;
	    transform: scale(1.05);
	}

	/* 定制不同年龄段的背景颜色 */
	#age-shortcuts .age-shortcut:nth-child(1) { background-color: #A64D5C; }
	#age-shortcuts .age-shortcut:nth-child(2) { background-color: #C97B84; }
	#age-shortcuts .age-shortcut:nth-child(3) { background-color: #D69395; }
	#age-shortcuts .age-shortcut:nth-child(4) { background-color: #E4ACAE; }
	#age-shortcuts .age-shortcut:nth-child(5) { background-color: #F2C6C7; }
	#age-shortcuts .age-shortcut:nth-child(6) { background-color: #FDE0E1; }


}