            /* 横向排列的Radio组容器 */
            .radio-group-horizontal {
                display: flex;
                flex-direction: row;
                align-items: center;
                gap: 8px;
                width: 670px;
                font-family: Source Han Sans CN, Source Han Sans CN;
                font-size: 14px;
                height: 14px;
                margin-bottom: 20px;
            }

            /* 介绍文字 */
            .radio-intro {
                font-size: 14px;
                color: #333333;
                margin-right: 8px;
                text-align: right;
                width: 150px;
            }

            /* 隐藏原生radio按钮 */
            .custom-radio input[type="radio"] {
                position: absolute;
                opacity: 0;
                width: 0;
                height: 0;
                pointer-events: none;
            }

            /* Radio按钮标签 - 核心独立样式 */
            .custom-radio label {
                all: unset;

                display: flex !important;
                align-items: center !important;
                cursor: pointer !important;
                font-size: 14px !important;
                line-height: 1.5 !important;
                color: #333333 !important;
                user-select: none !important;
                transition: all 0.2s ease !important;

                min-height: 20px !important;
                /* 调小最小高度 */
                padding-left: 26px !important;
                /* 调小左边距 */
                position: relative !important;
                width: 80px !important;
            }

            /* Radio按钮外观 - 使用伪元素创建 - 调小尺寸 */
            .custom-radio label::before {
                content: '' !important;
                position: absolute !important;
                left: 0 !important;
                top: 50% !important;
                transform: translateY(-50%) !important;

                width: 14px !important;
                /* 从20px调小到16px */
                height: 14px !important;
                /* 从20px调小到16px */

                border: 2px solid #ddd !important;
                border-radius: 50% !important;
                background: white !important;

                transition: all 0.2s ease !important;
                box-sizing: border-box !important;
                z-index: 1 !important;
            }

            /* 选中状态的内部圆点 - 调小尺寸 */
            .custom-radio label::after {
                content: '' !important;
                position: absolute !important;
                left: 5px !important;
                /* 调整位置适配新尺寸 */
                top: 50% !important;
                transform: translateY(-50%) scale(0) !important;

                width: 4px !important;
                /* 从8px调小到6px */
                height: 4px !important;
                /* 从8px调小到6px */

                border-radius: 50% !important;
                background: white !important;

                transition: transform 0.2s ease !important;
                z-index: 2 !important;
            }

            /* HOVER状态 - 相应调整阴影大小 */
            .custom-radio label:hover::before {
                border-color: #003399 !important;
                box-shadow: 0 0 0 2px rgba(0, 123, 255, 0.1) !important;
                /* 从3px调小到2px */
                transform: translateY(-50%) scale(1.05) !important;
            }

            /* CHECKED状态 - 相应调整光晕大小 */
            .custom-radio input[type="radio"]:checked+label::before {
                border-color: #003399 !important;
                background: #003399 !important;
                box-shadow: 0 0 0 1px rgba(0, 123, 255, 0.2) !important;
                /* 从2px调小到1px */
            }

            .custom-radio input[type="radio"]:checked+label::after {
                transform: translateY(-50%) scale(1) !important;
            }

            /* DISABLED状态 */
            .custom-radio input[type="radio"]:disabled+label {
                cursor: not-allowed !important;
                color: #999 !important;
                opacity: 0.6 !important;
            }

            .custom-radio input[type="radio"]:disabled+label::before {
                border-color: #ccc !important;
                background: #f8f9fa !important;
                box-shadow: none !important;
            }

            .custom-radio input[type="radio"]:disabled:checked+label::before {
                border-color: #ccc !important;
                background: #ccc !important;
            }

            .custom-radio input[type="radio"]:disabled+label:hover::before {
                border-color: #ccc !important;
                box-shadow: none !important;
                transform: translateY(-50%) !important;
            }

            /* 聚焦状态（键盘导航）- 相应调整轮廓大小 */
            .custom-radio input[type="radio"]:focus+label::before {
                outline: 1px solid #003399 !important;
                /* 从2px调小到1px */
                outline-offset: 1px !important;
                /* 从2px调小到1px */
            }