* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Helvetica Neue', Arial, sans-serif;
    background-color: #f5f5f5;
    color: #333;
    line-height: 1.6;
}

.container {
    max-width: 100%;
    padding: 20px;
    margin: 0 auto;
}

.wizard {
    background-color: #fff;
    border-radius: 10px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    overflow: hidden;
    position: relative;
    margin-bottom: 20px;
}

/* 步骤指示器 */
.steps {
    display: flex;
    justify-content: center;
    margin: 20px 0;
}

.step {
    width: 30px;
    height: 30px;
    border-radius: 50%;
    background-color: #e0e0e0;
    color: #666;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 15px;
    font-weight: bold;
    position: relative;
}

.step.active {
    background-color: #4CAF50;
    color: white;
}

.step.completed {
    background-color: #4CAF50;
    color: white;
}

.step:not(:last-child):after {
    content: '';
    position: absolute;
    width: 40px;
    height: 2px;
    background-color: #e0e0e0;
    top: 50%;
    left: 100%;
    transform: translateY(-50%);
}

.step.active:not(:last-child):after,
.step.completed:not(:last-child):after {
    background-color: #4CAF50;
}

/* 页面样式 */
/* 添加或确保以下样式存在 */
.page {
    display: none;
}

.page.active {
    display: block;
}

.step {
    /* 步骤样式 */
}

.step.active {
    /* 活动步骤样式 */
}

.step.completed {
    /* 已完成步骤样式 */
}

.error-message {
    background-color: #ffebee;
    color: #d32f2f;
    padding: 12px;
    margin-bottom: 20px;
    border-radius: 4px;
    border-left: 4px solid #d32f2f;
}
h1 {
    text-align: center;
    margin-bottom: 20px;
    color: #333;
    font-size: 24px;
}

.intro-content {
    margin-bottom: 30px;
}

.intro-content p {
    margin-bottom: 15px;
    text-align: center;
}

/* 表单样式 */
.form-group {
    margin-bottom: 20px;
}

label {
    display: block;
    margin-bottom: 8px;
    font-weight: bold;
}

input[type="text"],
input[type="tel"] {
    width: 100%;
    padding: 12px;
    border: 1px solid #ddd;
    border-radius: 4px;
    font-size: 16px;
}

.rating {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.rating input[type="radio"] {
    margin-right: 10px;
}

/* 按钮样式 */
.btn {
    padding: 12px 24px;
    background-color: #4CAF50;
    color: white;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    font-size: 16px;
    transition: background-color 0.3s;
}

.btn:hover {
    background-color: #45a049;
}

.next-btn {
    display: block;
    margin: 0 auto;
}

.form-buttons {
    display: flex;
    justify-content: space-between;
    margin-top: 30px;
}

.back-btn {
    background-color: #f1f1f1;
    color: #333;
}

.back-btn:hover {
    background-color: #e0e0e0;
}

/* 感谢页面样式 */
.thank-you {
    text-align: center;
    padding: 30px 0;
}

.success-icon {
    width: 80px;
    height: 80px;
    background-color: #4CAF50;
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 20px auto;
    font-size: 40px;
}

/* 响应式调整 */
@media (min-width: 768px) {
    .container {
        max-width: 600px;
    }
}


/* 在现有样式的末尾添加以下代码 */

/* 页脚样式 */
.footer {
    text-align: center;
    margin-top: 20px;
    padding: 10px;
}

.query-link {
    display: inline-block;
    padding: 8px 15px;
    background-color: #f1f1f1;
    color: #333;
    text-decoration: none;
    border-radius: 4px;
    font-size: 14px;
}

.query-link:hover {
    background-color: #e0e0e0;
}

/* 错误消息样式 */
.error-message {
    background-color: #ffebee;
    color: #d32f2f;
    padding: 12px;
    margin-bottom: 20px;
    border-radius: 4px;
    border-left: 4px solid #d32f2f;
    font-size: 14px;
    display: none;
}