.helpContainer {
    max-width: 800px;
    margin: 20px auto;
    padding: 20px;
    background-color: #fff;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}

.toggle-section {
    margin-bottom: 20px;
}

.toggle-title {
    cursor: pointer;
    padding: 10px 0;
    color: #007bff;
    font-size: 16px;
    text-align: left;
    font-weight: bold; /* 加粗标题 */
}

.toggle-title:hover {
    text-decoration: underline; /* 鼠标悬停时下划线 */
}

.toggle-content {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
    padding: 10px 0;
    background-color: #ffffff;
    border: 0;
    border-radius: 0;
}

.toggle-content img {
    max-width: 100%;
    height: auto;
    display: block;
    margin: 10px 0;
}

p {
    margin: 10px 0;
    padding-left: 10px;
    color: rgb(0, 43, 136);
}