/* 这是public/css/guide.css */



body, html {
    margin: 0;
    padding: 0;
    font-family: 'Segoe UI', sans-serif;
    background: linear-gradient(to right, #6A82FB, #FC5C7D); /* 统一的背景渐变 */
}

.guide-container {
    max-width: 800px;
    overflow: hidden;
    box-shadow: 0 6px 16px rgba(0,0,0,0.1);
    border-radius: 10px;
    background-color: #fff;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    margin: auto; /* 水平居中 */
}

header {
    background-color: #36D1DC; /* 调整为与大按钮相似的渐变色起点 */
    color: #fff;
    padding: 20px 40px;
    text-align: center;
    border-radius: 10px 10px 0 0;
}

header h1 {
    margin: 0;
    font-size: 28px;
}

main {
    padding: 20px;
}

.guide-step {
    display: flex;
    align-items: center;
    margin-bottom: 30px;
}

.icon {
    font-size: 48px;
    width: 90px;
    height: 90px;
    border-radius: 45px;
    background-color: #5B86E5; /* 调整为与大按钮渐变色终点相同 */
    color: white;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-right: 20px;
    box-shadow: 0 4px 8px rgba(0,0,0,0.1);
    transition: transform 0.3s ease;
}

.icon:hover {
    transform: scale(1.1);
}

.content h2 {
    margin: 0 0 10px 0;
    color: #f57c00; /* 保持原有颜色，如需统一可调整 */
    font-size: 22px;
}

.content p {
    margin: 0;
    line-height: 1.6;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.guide-step {
    animation: fadeInUp 0.5s ease-out forwards;
    opacity: 0;
    animation-delay: var(--animation-delay, 0s);
}

.guide-step:nth-child(1) { --animation-delay: 0.3s; }
.guide-step:nth-child(2) { --animation-delay: 0.6s; }
.guide-step:nth-child(3) { --animation-delay: 0.9s; }
