@media (min-width: 1280px) {
    main {
        padding: 88px 0;
        background-position: bottom 0 left 0;
        background-size: 100% auto;
        background-repeat: no-repeat;
    }

    .section-title {
        font-size: 54px;
        font-weight: 700;
        line-height: 38px;
        margin-bottom: 50px;
    }

    .module1 {
        height: 570px;
        background-size: auto 100%;
        background-position: left 0 top 0;
        background-repeat: no-repeat;
        position: relative;
        margin-bottom: 80px;
    }

    .form {
        position: absolute;
        top: 50%; right: calc((100% - 1200px)/2);
        transform: translate(0, -50%);
        width: 600px;
        background: rgba(17, 17, 17, 0.9);
        padding: 35px 57px 50px;
        border-radius: 24px;
    }
    .form-header {
        font-size: 38px;
        font-weight: 700;
        line-height: 55px;
        margin-bottom: 22px;
        text-align: center;
    }

    .form-item {
        border: 1px solid rgba(49, 49, 50, 1);
        border-radius: 6px;
        margin-bottom: 30px;
        position: relative;
        padding: 20px 24px;
    }

    .form-item.highlight {
        border-color: var(--color-primary-theme);
        box-shadow: 0 0 5px 2px rgba(255, 106, 0, 0.3);
    }

    .form-item .input-label {
        background-size: auto 20px;
        background-repeat: no-repeat;
        padding-left: 32px;
        font-size: 20px;
        font-weight: 400;
        line-height: 23px;
        min-width: 148px;
    }

    .form-item .input-label:before {
        content: "*";
        color: #ab4545;
    }

    .form-item .input-container {
        width: 100%;
        position: relative;
    }

    .form-item .verification-code {
        position: relative;
    }

    .form-item input,
    .form-item textarea {
        width: 220px;
        height: 24px;
        border: none;
        outline: none;
        color: var(--color-text);
        background: none;
        box-sizing: border-box;
        font-size: 20px;
    }

    .form-item textarea {
        width: 100%;
        height: 100px;
        padding: 14px 0 24px;
    }

    .form-item .verification-code input::placeholder,
    .form-item textarea::placeholder {
        color: rgba(102, 102, 102, 1);
    }

    .form-item .char-count {
        position: absolute;
        bottom: 0;
        right: 0;
        font-size: 18px;
        color: var(--color-muted);
        z-index: 1;
    }

    .error-message {
        font-size: 14px;
        line-height: 24px;
        color: red;
        position: absolute;
        left: 0; top: 100%;
        display: none;
    }

    .get-code-btn {
        font-size: 20px;
        font-weight: 400;
        line-height: 16px;
        color: var(--color-primary-theme);
        padding: 0 20px;
        background: none;
        border: none;
        outline: none;
        position: absolute;
        right: 0; top: 50%;
        transform: translateY(-50%);
        border-left: 1px solid rgba(255, 255, 255, 1);
    }

    .get-code-btn[disabled] {
        color: rgba(102, 102, 102, 1);
    }

    /* 美化下拉选择框 */
    .cascader-container {
        position: relative;
        width: 100%;
    }

    .cascader-select {
        font-size: 20px;
        border-radius: 6px;
        padding: 12px 15px;
        cursor: pointer;
        display: flex;
        justify-content: space-between;
        align-items: center;
        transition: all 0.3s;
    }

    .cascader-select:after {
        content: "";
        font-weight: 900;
        font-size: 12px;
        color: #777;
        width: 10px;
        height: 10px;
        background-image: url('./../image/join/icon-arrowRight.png');
        background-size: contain;
        background-repeat: no-repeat;
        transition: transform 0.3s;
    }

    .cascader-select.select-arrow-active:after {
        transform: rotate(180deg);
    }

    .cascader-dropdown {
        position: absolute;
        background-color: var(--color-primary-card);
        top: 100%;
        left: 0;
        z-index: 99;
        border-radius: 6px;
        max-height: 300px;
        overflow-y: auto;
        box-shadow: 0 5px 15px rgba(255, 255, 255, 0.1);
        display: none;
        min-width: 180px;
    }

    .cascader-level {
        display: flex;
    }

    .cascader-panel {
        border-right: 1px solid var(--color-border);
        min-width: 180px;
        max-height: 300px;
        overflow-y: auto;
    }

    .cascader-panel:last-child {
        border-right: none;
    }

    .cascader-option {
        padding: 10px 15px;
        cursor: pointer;
        transition: all 0.2s;
        display: flex;
        justify-content: space-between;
        align-items: center;
    }

    .cascader-option:hover {
        background-color: var(--color-primary-card);
        color: var(--color-primary-theme);
    }

    .cascader-option.selected {
        background-color: var(--color-primary-card);
        color: var(--color-primary-theme);
        font-weight: 500;
    }

    .cascader-option.has-children:after .cascader-select{
        content: "\f054";
        font-family: "Font Awesome 6 Free";
        font-weight: 900;
        font-size: 12px;
        color: #999;
    }

    .same-as-selected {
        background-color: #e6f0ff;
        color: var(--color-primary-theme);
    }

    .submit-btn {
        border-radius: 6px;
        color: var(--color-text);
        font-size: 24px;
        font-weight: 700;
        line-height: 28px;
        width: 100%;
        height: 72px;
        background: linear-gradient(90.00deg, rgba(254, 206, 74, 1),rgba(255, 105, 14, 1) 100%);
    }
}




/* 移除自动填充的背景色 */
input:-webkit-autofill,
input:-webkit-autofill:hover,
input:-webkit-autofill:focus,
input:-webkit-autofill:active {
    -webkit-box-shadow: 0 0 0 1000px transparent inset !important;
    -webkit-text-fill-color: var(--color-text) !important;
    transition: background-color 5000s ease-in-out 0s;
}