html,
body {
    height: 100%;
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

*,
*::before,
*::after {
    box-sizing: inherit;
}

body {
    font-family: "Arial", sans-serif;
    background: linear-gradient(to bottom, #ffcb9a, #ffffff);
    display: flex;
    flex-direction: column;
    align-items: center;
    /* opacity: 0.8; */
}

.header {
    padding-top: 20px;
    text-align: center;
    width: 100%;
    box-sizing: border-box;
}

.header img {
    max-width: 100%;
    height: auto;
    display: block;
    margin: 0 auto;
}

.main {
    width: 90%;
    max-width: 600px;
    /* 设置最大宽度 */
    box-sizing: border-box;
    background-color: white;
    border-radius: 10px;
    padding: 20px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    margin: 20px 0;
}

form {
    display: flex;
    flex-direction: column;
    gap: 10px;
    width: 100%;
    /* 确保表单宽度为100% */
    box-sizing: border-box;
}

label {
    font-weight: bold;
}

h1 {
    font-size: 2em;
    color: #007bff;
    text-align: center;
    margin-bottom: 10px;
    margin-top: 10px;
}

p {
    font-size: 1.2em;
    color: #333;
    text-align: center;
    margin-bottom: 10px;
    margin-top: 10px;
}

.required {
    color: red;
}

@media (max-width: 600px) {
    main {
        margin: 10px 0;
        /* 只保留上下外边距 */
    }
}

input[aria-hidden="true"] {
    display: none !important;
}

.el-radio:focus:not(.is-focus):not(:active):not(.is-disabled) .el-radio__inner {
    box-shadow: none !important;
}

.custom-label {
    /* width: 20%;
  display: inline-block; */
}

.inline-input {
    width: 80%;
}
