/* 全局样式 */
body {
    background-color: #f5f5f5;
    font-family: 'PingFang SC', 'Helvetica Neue', Arial, sans-serif;
    margin: 0;
}

.container {
    width: 100%;
    min-height: 100vh;
}

/* 顶部图片 */
.header-image {
    height: 150px; /* 300rpx 大致转换为 150px，可根据实际情况调整 */
    width: 100%;
    position: relative;
    overflow: hidden;
}

.header-image img {
    width: 100%;
    height: 100%;
}
.item-input input:focus {
    outline: none;
    /* 可以添加其他视觉反馈，比如背景色变化 */
    background-color: #ffffff;
}
#options:focus {
    outline: none;
    /* 可以添加其他视觉反馈，比如背景色变化 */
    background-color: #ffffff;
}
/* 表单容器 */
.form-container {
    padding: 20px 15px; /* 40rpx 30rpx 大致转换为 20px 15px */
    margin: 15px 10px 10px; /* -30rpx 20rpx 20rpx 大致转换为 -15px 10px 10px */
    background-color: #ffffff;
    border-radius: 8px; /* 16rpx 大致转换为 8px */
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05); /* 0 4rpx 20rpx 大致转换为 0 2px 10px */
    position: relative;
    z-index: 10;
}

.form-title {
    font-size: 18px; /* 36rpx 大致转换为 18px */
    font-weight: 600;
    color: #333333;
    margin-bottom: 20px; /* 40rpx 大致转换为 20px */
    text-align: center;
}

/* 表单项目 */
.form-item {
    margin-bottom: 15px; /* 30rpx 大致转换为 15px */
}

.item-label {
    font-size: 14px; /* 28rpx 大致转换为 14px */
    color: #666666;
    margin-bottom: 5px; /* 10rpx 大致转换为 5px */
}

.item-input {
    border: 1px solid #e5e5e5;
    border-radius: 5px; /* 10rpx 大致转换为 5px */
    padding: 10px 12px; /* 20rpx 24rpx 大致转换为 10px 12px */
    background-color: #f9f9f9;
    transition: all 0.3s;
}

.item-input:focus-within {
    border-color: #597aff;
    background-color: #ffffff;
}

.item-input input {
    font-size: 15px; /* 30rpx 大致转换为 15px */
    color: #333333;
    height: 20px; /* 40rpx 大致转换为 20px */
    border: none;
    background: transparent;
    width: 100%;
}

.input-placeholder {
    color: #999999;
}

/* 选择器样式 */
.item-input select {
    font-size: 15px; /* 30rpx 大致转换为 15px */
    color: #333333;
    width: 100%;
    border: none;
    background: transparent;
}

/* 提交按钮 */
.submit-button {
    margin-top: 25px; /* 50rpx 大致转换为 25px */
    height: 45px; /* 90rpx 大致转换为 45px */
    line-height: 45px; /* 90rpx 大致转换为 45px */
    border-radius: 22.5px; /* 45rpx 大致转换为 22.5px */
    background: linear-gradient(to right, #6191F1 0%, #3A7EFF 100%);
    color: #ffffff;
    font-size: 16px; /* 32rpx 大致转换为 16px */
    font-weight: 500;
    box-shadow: 0 4px 10px rgba(89, 122, 255, 0.3); /* 0 8rpx 20rpx 大致转换为 0 4px 10px */
    transition: all 0.3s;
    display: flex;
    justify-content: center;
    align-items: center;
    border: none;
    width: 50%;
    margin-left: 25%;
}

.submit-button:active {
    opacity: 0.8;
    transform: scale(0.98);
}