body {
    padding: 0;
    margin: 0;
}

.modal-content {
    width: 960px;
}

.form-container {
    position: relative;
    width: 960px;
    background-image: linear-gradient(to top, rgba(255, 255, 255, 0) 0%, rgba(88, 100, 255, 0.3) 100%);
    background-size: 100% 70px;
    background-repeat: no-repeat;
    border-radius: 24px;
}

.form-container .close-btn {
    position: absolute;
    top: 24px;
    right: 24px;
    width: 24px;
    height: 24px;
    cursor: pointer;
}

.form-title {
    text-align: center;
    font-size: 20px;
    font-weight: bold;
    color: #53545C;
    margin: 32px 0 24px 0;
}

.form-description {
    font-size: 14px;
    color: #86909C;
    line-height: 22px;
    margin: 0 241px 24px;
}

.form-wrapper {
    margin: 0 241px;
}

.form-item {
    display: flex;
    align-items: center;
    margin-bottom: 20px;
}

.form-item input, .form-item select {
    width: 360px;
    height: 36px;
    background: #f7f7f7;
    border: none;
    font-size: 14px;
    color: #333;
    padding: 0 10px;
    border-radius: 8px;
}

.form-item input:focus {
    outline: none;
    border-color: transparent;
}

.form-item input::placeholder {
    color: #86909C;
    font-size: 14px;
}

.form-item select:focus {
    outline: none;
    border: none;
    padding-left: 10px;
}

.form-label {
    display: flex;
    align-items: center;
    margin-right: 16px;
    margin-bottom: 0;
}

.form-label label {
    font-size: 16px;
    color: #4E5969;
    text-align: right;
    width: 90px;
}

.form-label label::before {
    content: "*";
    display: inline-block;
    color: #FF1744;
    font-size: 16px;
    margin-right: 2px;
}

.company-tip {
    font-size: 10px;
    color: #FF1744;
    padding: 0;
    margin: 0 0 0px 110px;
    display: none;
}

.form-gray-tip {
    font-size: 12px;
    color: #999;
    margin: 0 0 16px 108px;
}

.verification-code-container {
    display: flex;
    gap: 10px;
}

.verification-code-container img {
    width: 80px;
    height: 34px;
    background: #F7F7F7;
    border-radius: 8px;
}

.verification-code-input {
    flex: 1;
    width: 270px !important;
}

.verification-code-button {
    width: 80px;
    height: 36px;
    color: #4E5969;
    border: none;
    border-radius: 8px;
    font-size: 12px;
    background: #F7F7F7;
}

.submit-button {
    border: none;
    margin: 20px auto;
    display: block;
    width: 120px;
    height: 40px;
    background: #F7F7F7;
    border-radius: 8px;
    font-weight: 500;
    font-size: 14px;
    color: #86909C;
}

.form-select:invalid {
    color: #B5B4B4;
}





/*select重写样式*/
.custom-select-container {
    position: relative;
    margin-bottom: 20px;
    width: 360px;
}

.custom-select {
    position: relative;
    width: 100%;
}

.custom-select-trigger {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 360px;
    padding: 0 15px;
    height: 40px;
    background: #F7F7F7;
    border-radius: 8px;
    cursor: pointer;
    transition: border-color 0.2s;
    box-sizing: border-box;
}

.custom-select-trigger:hover {
    border-color: #EEEFFF;
}

.custom-select.active .custom-select-trigger {
    border-color: #409eff;
}

.custom-select-value {
    flex: 1;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
    color: #606266;
}

.custom-select-value.placeholder1 {
    color: #86909C;
    font-size: 14px;
}

.custom-select-arrow {
    margin-left: 8px;
    font-size: 10px;
    transition: transform 0.3s;
}

.custom-select-arrow img {
    width: 12px;height: 12px;
}

.custom-select.active .custom-select-arrow {
    transform: rotate(180deg);
}

.custom-select-dropdown {
    position: absolute;
    top: calc(100% + 5px);
    left: 0;
    width: 360px;
    max-height: 200px;
    overflow-y: auto;
    background-color: #fff;
    border-radius: 4px;
    box-shadow: 0 2px 12px 0 rgba(0, 0, 0, 0.1);
    z-index: 100;
    display: none;
}

.custom-select.active .custom-select-dropdown {
    display: block;
}

.custom-select-options {
    padding: 6px 10px;
}

/* 修改选项样式，防止抖动 */
.custom-select-option {
    padding: 0 15px;
    height: 40px;
    line-height: 40px;
    cursor: pointer;
    transition: all 0.2s;
    margin-bottom: 8px;
}

.custom-select-option:hover {
    background-color: #EEEFFF;
}

/* 选中项样式 */
.custom-select-option.selected,
.custom-select-option.active {
    color: #5864FF;
    background-color: #EEEFFF;
    height: 40px;
    border-radius: 8px;
}

/* 禁用状态 */
.custom-select.disabled .custom-select-trigger {
    background-color: #F7F7F7;
    border-color: #e4e7ed;
    color: #86909C;
    cursor: not-allowed;
}

.custom-select.disabled .custom-select-value {
    color: #c0c4cc;
}