/* 帮助页面样式 */
#help-container {
    max-width: 1000px;
    margin: 0 auto;
    padding: 20px;
    background-color: #fff;
    box-shadow: 0 0 15px rgba(0, 0, 0, 0.1);
    min-height: 100vh;
}

header {
    text-align: center;
    padding: 20px 0;
    border-bottom: 2px solid #E67E22;
    margin-bottom: 30px;
    position: relative;
}

header h1 {
    color: #E67E22;
    font-size: 24px;
    margin: 0;
}

.back-btn {
    display: inline-block;
    padding: 8px 15px;
    background-color: #3498DB;
    color: white;
    text-decoration: none;
    border-radius: 5px;
    margin-top: 15px;
    transition: background-color 0.3s;
}

.back-btn:hover {
    background-color: #2980B9;
}

.help-section {
    margin-bottom: 40px;
    padding: 20px;
    background-color: #FFF8EE;
    border-radius: 10px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.05);
}

.help-section h2 {
    color: #E67E22;
    border-bottom: 1px solid #E67E22;
    padding-bottom: 10px;
    margin-top: 0;
}

.help-section h3 {
    color: #3498DB;
    margin: 20px 0 10px;
}

.help-section p {
    line-height: 1.6;
    margin-bottom: 15px;
}

.help-section ul {
    padding-left: 20px;
}

.help-section li {
    margin-bottom: 8px;
    line-height: 1.5;
}

footer {
    text-align: center;
    padding: 20px 0;
    margin-top: 30px;
    border-top: 1px solid #eee;
}

footer p {
    color: #7F8C8D;
    margin-bottom: 15px;
}

@media (max-width: 768px) {
    #help-container {
        padding: 15px;
    }
    
    .help-section {
        padding: 15px;
    }
    
    header h1 {
        font-size: 20px;
    }
}
