CheckInList.less 596 Bytes
.CheckInListWrapper {
    // 列表项样式
    .CheckInListItem {
        // 选中态样式
        &.is-active {
            border-color: #bbf7d0; // 绿色边框
            background-color: rgba(16, 185, 129, 0.1); // 轻微绿色背景
        }

        // 图标样式
        .Icon {
            &.is-active {
                background-color: #10b981; // 绿色激活背景
                color: #ffffff; // 白色图标
            }
        }
    }

    // 提交按钮样式
    .SubmitBtn {
        &:disabled {
            opacity: 0.7; // 禁用态透明度
        }
    }
}