/* 全局字体样式 */
#general-policies {
    width: 80%;
    max-width: 1440px;
    margin: 0 auto;
}

#membership-policies {
    width: 80%;
    max-width: 1440px;
    margin: 0 auto;
    margin-top: 50px;
}

/* 折叠按钮样式 */
.collapsible {
    border-bottom: 1px solid #000000;
    border-top: none !important;
    border-left: none !important;
    border-right: none !important;
    background-color: #ffffff;
    text-decoration: none;
    cursor: pointer;
    padding: 18px;
    padding-top: 10px;
    padding-bottom: 3px;
    padding-left: 18px;
    width: 100%;
    text-align: left;
    outline: none;
    font-size: 1.2em;
    margin-bottom: 10px;
    color: #000000;
}

/* 折叠按钮激活状态和悬停效果 */
.active,
.collapsible:hover {
    background-color: #ff9900bf;
    text-decoration: none;
}

/* 折叠按钮的符号样式 */
.collapsible:after {
    content: '\002B';
    /* Unicode字符 "+" */
    color: rgb(0, 0, 0);
    font-weight: bold;
    float: right;
    margin-left: 5px;
}

.active:after {
    content: "\2212";
    /* Unicode字符 "−" */
}

/* 折叠内容样式 */
.content {
    padding: 0 18px;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.2s ease-out;
    background-color: #ffffff;
    margin-bottom: 10px;
    font-size: 14px;
    /* 内容字体大小 */
    line-height: 1.5;
    /* 内容行高 */
}

/* 标题样式 */
h2 {
    font-size: 24px;
    color: #444;
    font-weight: bold;
    margin-bottom: 10px;
}

/* 段落样式 */
p {
    margin: 10px 0;
}

@media (max-width: 1023px) and (min-width:769px) {
    #general-policies {
        width: 90%;
        max-width: 1440px;
        margin: 0 auto;
    }
    
    #membership-policies {
        width: 90%;
        max-width: 1440px;
        margin: 0 auto;
        margin-top: 50px;
    }
}

@media (max-width: 768px)and (min-width:432px) {
    #general-policies {
        width: 90%;
        max-width: 1440px;
        margin: 0 auto;
    }
    
    #membership-policies {
        width: 90%;
        max-width: 1440px;
        margin: 0 auto;
        margin-top: 50px;
    }
}

@media (max-width: 431px) {
    #general-policies {
        width: 90%;
        max-width: 1440px;
        margin: 0 auto;
    }
    
    #membership-policies {
        width: 90%;
        max-width: 1440px;
        margin: 0 auto;
        margin-top: 50px;
    }
}