
        /* 页面主标题 */
        .main-title {
            font-size: 36px;
            font-weight: 700;
            color: #19402c;
            margin-bottom: 42px;
            border-left: 6px solid #23a055;
            padding-left: 16px;
        }
        /* 每个板块容器 */
        .section {
            margin-bottom: 46px;
        }
        /* 二级板块标题（一、二、三、四） */
        .section-title {
            font-size: 25px;
            font-weight: 600;
            color: #1c3c30;
            padding-bottom: 8px;
            border-bottom: 2px solid #e6f4ec;
            margin-bottom: 20px;
        }
        /* 正文段落 */
        .text-p {
            font-size: 17px;
            text-indent: 2em;
            margin-bottom: 16px;
            color: #333333;
        }
        /* 完整版单段文案小标题 */
        .full-text-title {
            font-size: 22px;
            font-weight: 600;
            color: #26784a;
            margin: 50px 0 18px;
        }
        /* 移动端自适应样式（768px为手机平板分界） */
        @media screen and (max-width: 768px) {
            .container {
                padding: 22px 16px;
            }
            .main-title {
                font-size: 27px;
                margin-bottom: 28px;
            }
            .section-title {
                font-size: 21px;
            }
            .full-text-title {
                font-size: 19px;
            }
            .text-p {
                font-size: 15px;
            }
        }