 .form-group {
     margin-bottom: 20px;
     width: 670px;
 }

 .form-label {
     margin-right: 10px;
     text-align: right;
     width: 150px;
     font-size: 14px;
     color: #333;
     display: inline-block;
     vertical-align: middle;
     font-family: Source Han Sans CN, Source Han Sans CN;
 }

 .custom-select {
     position: relative;
     width: 500px;
     display: inline-block;
     vertical-align: middle;
 }

 .select-wrapper {
     border: 2px solid #ccc;
     background-color: white;
     border-radius: 4px;
     height: 28px;
     transition: all 0.3s ease;
     position: relative;
     z-index: 1;
     cursor: pointer;
     /* 新增：让整个wrapper可点击 */
     border: 1px solid #CDCDCD;
 }

 /* 活性状态 hover：边框变蓝 */
 .custom-select:not(.inactive):not(.inactive-selected-bg):hover .select-wrapper {
     border-color: #003399;
 }

 .custom-select:not(.inactive):not(.inactive-selected-bg):hover .arrow-icon {
     background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='%23666'%3E%3Cpath d='M7 10l5 5 5-5z'/%3E%3C/svg%3E");
 }

 /* 非活性状态：保持正常样式 */
 .custom-select.inactive .select-wrapper {
     border: 2px solid #ccc;
     background-color: #f9f9f9;
 }

 /* 非活性且被setSelectValue选中后：外扩蓝色背景，不改变边框 */
 .custom-select.inactive-selected-bg .select-wrapper {
     border: 2px solid #ccc;
     background-color: #f9f9f9;
 }

 /* 蓝色背景层：比下拉框宽高各多2px */
 .custom-select.inactive-selected-bg::before {
     content: '';
     position: absolute;
     top: -5px;
     left: -5px;
     right: -5px;
     bottom: -5px;
     background-color: #DBF0FF;
     z-index: 0;
     border-radius: 6px;
 }

 .select-input {
     width: 100%;
     padding: 6px 40px 6px 15px;
     border: none;
     outline: none;
     background: transparent;
     color: #999999;
     font-size: 14px;
     cursor: pointer;
     box-sizing: border-box;
     display: flex;
     align-items: center;
     justify-content: space-between;
     height: 100%;
     position: relative;
     z-index: 2;
     font-family: Source Han Sans CN, Source Han Sans CN;
 }

 .custom-select.inactive .select-input,
 .custom-select.inactive-selected-bg .select-input {
     cursor: not-allowed;
     color: #999;
 }

 .select-text {
     flex: 1;
     line-height: 14px;
 }

 .select-text.has-selection {
     color: #003399;
     font-weight: 500;
 }

 .arrow-icon,
 .clear-icon {
     position: absolute;
     right: 12px;
     top: 50%;
     transform: translateY(-50%);
     width: 16px;
     height: 14px;
     transition: opacity 0.3s ease;
     cursor: pointer;
     z-index: 2;
 }

 .arrow-icon {
     background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='%23666'%3E%3Cpath d='M7 10l5 5 5-5z'/%3E%3C/svg%3E");
     background-size: contain;
     background-repeat: no-repeat;
 }

 /* 默认下箭头（灰色） */
 .arrow-icon {
     background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='%23666'%3E%3Cpath d='M7 10l5 5 5-5z'/%3E%3C/svg%3E");
     background-size: contain;
     background-repeat: no-repeat;
 }

 /* 上箭头（灰色，展开时显示） */
 .arrow-icon.up {
     background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='%23666'%3E%3Cpath d='M7 14l5-5 5 5z'/%3E%3C/svg%3E");
 }

 .clear-icon {
     background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='%23666'%3E%3Cpath d='M19 6.41L17.59 5 12 10.59 6.41 5 5 6.41 10.59 12 5 17.59 6.41 19 12 13.41 17.59 19 19 17.59 13.41 12z'/%3E%3C/svg%3E");
     background-size: contain;
     background-repeat: no-repeat;
     opacity: 0;
 }



 /* 非活性状态下 hover 时，箭头图标保持灰色，不变成蓝色 */
 .custom-select.inactive:hover .select-wrapper,
 .custom-select.inactive-selected-bg:hover .select-wrapper {
     border-color: #ccc;
 }

 .custom-select.inactive:hover .arrow-icon,
 .custom-select.inactive-selected-bg:hover .arrow-icon {
     background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='%23666'%3E%3Cpath d='M7 10l5 5 5-5z'/%3E%3C/svg%3E");
 }

 .custom-select.active .arrow-icon {
     opacity: 0;
 }

 .custom-select.active .clear-icon {
     opacity: 1;
 }

 .custom-select.focused .select-wrapper {
     border-color: #007bff;
     box-shadow: 0 0 0 3px rgba(0, 123, 255, 0.1);
 }

 .select-dropdown {
     position: absolute;
     top: 100%;
     left: 0;
     right: 0;
     background: white;
     border: none;
     border-radius: 0 0 4px 4px;
     max-height: 210px;
     overflow-y: auto;
     z-index: 1000;
     opacity: 0;
     visibility: hidden;
     transform: translateY(-10px);
     transition: all 0.3s ease;
     box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
 }

 .select-dropdown.show {
     opacity: 1;
     visibility: visible;
     transform: translateY(0);
 }

 .select-option {
     padding: 5px 15px;
     cursor: pointer;
     color: #333;
     transition: all 0.2s ease;
     font-size: 14px;
     /* border-bottom: 1px solid #f0f0f0; */
     font-family: Source Han Sans CN, Source Han Sans CN;
 }

 .select-option:last-child {
     border-bottom: none;
 }

 .select-option:hover {
     background-color: #DBF0FF;
     color: #003399;
 }

 .select-option.selected {
     background-color: #DBF0FF;
     color: #003399;
     font-weight: bold;
 }

 /* 非活性状态下禁用选项 hover 和选中 */
 .custom-select.inactive .select-dropdown .select-option,
 .custom-select.inactive-selected-bg .select-dropdown .select-option {
     cursor: not-allowed;
     color: #aaa;
     pointer-events: none;
 }

 .radioDiv {
     display: flex;
     align-items: center;
     width: 650px;
     height: 14px;
     line-height: 14px;
     /* margin-right: 0px; */
     justify-content: flex-end;
     margin-bottom: 20px;

 }

 .radio-label-new {
     width: auto;
     margin-right: 10px;
     font-family: Source Han Sans CN, Source Han Sans CN;
     font-weight: 400;
     font-size: 14px;
     color: #333333;
     line-height: 14px;
     text-align: right;
     font-style: normal;
     text-transform: none;
     margin-right: 15x;
     /* width: auto; */
     /* width: 130px; */
     margin-right: 15px;
     /* width: 150px; */
     /* margin-left: 27px; */


 }

 .radio-item-area {
     display: flex;
     align-items: center;
     gap: 30px;
     width: 500px;
 }

 