 /* 全局基础重置 */
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        body {
            background-color: #ffffff;
            padding: 20px 10px;
            font-family: "Microsoft Yahei", sans-serif;
        }

        /* 大盒子核心样式 */
       .custom-main-box {
            max-width: 1180px;
            margin: 0 auto;
            background-color: #ffffff;
            padding: 30px;
            display: flex;
            flex-wrap: wrap;
            gap: 25px;
        }

        /* 左侧小盒子 */
       .custom-left-box {
            width: calc(100% / 3 - (25px / 2));
            display: flex;
            flex-direction: column;
            align-items: center;
            text-align: center;
        }

        /* 圆形图片容器 */
       .custom-img-wrapper {
            width: 140px;
            height: 140px;
            border-radius: 50%;
            border: 1px solid #dddddd;
            padding: 5px;
            margin-bottom: 20px;
        }

        /* 图片样式 */
       .custom-avatar {
            width: 100%;
            height: 100%;
            border-radius: 50%;
            object-fit: cover;
        }

        /* 左侧主标题 */
       .custom-left-title {
            font-size: 18px;
            color: #333333;
            margin-bottom: 10px;
            font-weight: 600;
        }

        /* 左侧副标题 */
       .custom-left-subtitle {
            font-size: 14px;
            color: #999999;
            margin-bottom: 8px;
        }

        /* 左侧描述文本 */
       .custom-left-desc {
            font-size: 14px;
            color: #999999;
            line-height: 1.5;
        }

        /* 右侧小盒子 */
       .custom-right-box {
            width: calc(200% / 3 - (25px / 2));
        }

        /* 右侧大标题 */
       .custom-right-title {
            font-size: 18px;
            color: #333333;
            margin-bottom: 15px;
            font-weight: 600;
        }

        /* 右侧文章内容 */
       .custom-right-content {
            font-size: 14px;
            color: #999999;
            line-height: 1.8;
        }

        /* 移动端适配（768px以下屏幕）- 核心修改部分 */
        @media (max-width: 768px) {
            /* 重置大盒子的gap，避免移动端上下布局有多余间距 */
           .custom-main-box {
                padding: 0; /* 去掉大盒子默认padding，避免和内部10px间距叠加 */
                gap: 0;
                flex-direction: column; /* 强制移动端为垂直布局，确保上下排列 */
            }
            /* 左右盒子占满宽度，添加左右10px间距 */
           .custom-left-box,
           .custom-right-box {
                width: 100%;
                padding: 0 10px; /* 文字左右10px间距 */
            }
            /* 左侧盒子底部增加间距，区分上下布局 */
           .custom-left-box {
                margin-bottom: 30px;
                padding-top: 20px; /* 补充顶部间距，保持视觉舒适 */
            }
            /* 右侧盒子底部补充间距 */
           .custom-right-box {
                padding-bottom: 20px;
            }
        }