.guide-container {
    max-width: 1200px;
    margin: 2rem auto;
    padding: 0 1rem;
}

.guide-container h1 {
    text-align: center;
    color: #2c3e50;
    margin-bottom: 2rem;
}

/* 指南内容样式 */
.guide-content {
    background: white;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    padding: 2rem;
}

.guide-section {
    margin-bottom: 2rem;
}

.guide-section:last-child {
    margin-bottom: 0;
}

.guide-section h2 {
    color: #2c3e50;
    margin-bottom: 1.5rem;
    font-size: 1.5rem;
    border-bottom: 2px solid #3498db;
    padding-bottom: 0.5rem;
}

.step-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
}

/* 复选框列表样式 */
.checklist {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.checkbox-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    cursor: pointer;
}

.checkbox-item input[type="checkbox"] {
    width: 20px;
    height: 20px;
    border: 2px solid #3498db;
    border-radius: 4px;
    cursor: pointer;
}

.checkbox-item span {
    color: #2c3e50;
    font-size: 1rem;
}

/* 步骤详情样式 */
.step-details {
    background: #f8f9fa;
    padding: 1.5rem;
    border-radius: 8px;
}

.step-details p {
    color: #2c3e50;
    font-weight: bold;
    margin-bottom: 1rem;
}

.step-details ul {
    list-style-type: disc;
    margin-left: 1.5rem;
    color: #34495e;
}

.step-details li {
    margin-bottom: 0.5rem;
}

/* 进度追踪样式 */
.progress-tracker {
    margin-top: 2rem;
    text-align: center;
}

.progress-bar {
    width: 100%;
    height: 10px;
    background: #ecf0f1;
    border-radius: 5px;
    overflow: hidden;
    margin-bottom: 1rem;
}

.progress-fill {
    width: 0;
    height: 100%;
    background: #3498db;
    transition: width 0.3s ease;
}

.progress-text {
    color: #2c3e50;
    font-size: 1rem;
}

/* 响应式设计 */
@media (max-width: 768px) {
    .step-content {
        grid-template-columns: 1fr;
        gap: 1rem;
    }

    .guide-section h2 {
        font-size: 1.3rem;
    }

    .checkbox-item span {
        font-size: 0.95rem;
    }

    .step-details {
        padding: 1rem;
    }
} 