/* 使用指南页面样式 */

/* 确保页面使用flex布局 */
body.guide-page {
    display: flex;
    flex-direction: column;
    min-height: 100vh;
    overflow-x: hidden;
    overflow-y: auto;
    height: auto;
}

body.guide-page .header {
    flex-shrink: 0;
}

body.guide-page .footer {
    flex-shrink: 0;
    margin-top: auto;
}

.content-wrapper {
    flex: 1;
    padding: 100px 40px 40px;
    position: relative;
    z-index: 1;
}

.guide-container {
    max-width: 1200px;
    margin: 0 auto;
}

.page-title {
    font-size: 42px;
    font-weight: 700;
    margin-bottom: 40px;
    color: var(--text-color);
    position: relative;
    padding-bottom: 15px;
}

.page-title:after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 80px;
    height: 4px;
    background-color: var(--primary-color);
}

.guide-section {
    margin-bottom: 60px;
    background-color: rgba(255, 255, 255, 0.8);
    border-radius: 12px;
    padding: 30px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.guide-section:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
}

.guide-section h2 {
    font-size: 28px;
    font-weight: 600;
    margin-bottom: 25px;
    color: var(--text-color);
    border-left: 4px solid var(--primary-color);
    padding-left: 15px;
}

.guide-content {
    display: flex;
    gap: 40px;
    align-items: center;
}

.guide-text {
    flex: 1;
}

.guide-text h3 {
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 15px;
    color: var(--text-color);
}

.guide-text p {
    font-size: 16px;
    line-height: 1.6;
    margin-bottom: 20px;
    color: rgba(51, 51, 51, 0.8);
}

.guide-image {
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: center;
}

.guide-image img {
    max-width: 100%;
    border-radius: 8px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

/* 响应式设计 */
@media (max-width: 992px) {
    .guide-content {
        flex-direction: column;
    }
    
    .guide-section:nth-child(even) .guide-content {
        flex-direction: column;
    }
    
    .guide-text, .guide-image {
        width: 100%;
    }
}

@media (max-width: 768px) {
    .content-wrapper {
        padding: 100px 20px 30px;
    }
    
    .page-title {
        font-size: 32px;
    }
    
    .guide-section {
        padding: 20px;
    }
    
    .guide-section h2 {
        font-size: 24px;
    }
    
    .guide-text h3 {
        font-size: 18px;
    }
} 