.content_body_text {
    display: flex;
    align-items: center;
    gap: 20px;
}

.drop {
    display: inline-block;
    width: 4px;
    height: 4px;
    border-radius: 50%;
    background-color: #1281FF;
}

.content_body_options {
    margin-top: 36px;
}

/* 移动端响应式样式 */
@media screen and (max-width: 767px) {
    /* 容器布局调整 */
    .container_flx {
        height: auto;
        flex-direction: column;
    }

    /* 内容区域调整 */
    .content_body_right,.content_body_left {
        width: 100%;
        text-align: center;
        padding: 15px;
    }

    .content_body_left {
        margin-top: 0;
    }

    /* 标题和文本调整 */
    .content_body_title {
        font-size: 24px;
        margin-bottom: 20px;
        text-align: center;
    }

    .content_body_text {
        font-size: 14px;
        line-height: 1.6;
        margin: 10px 0;
        text-align: left;
    }

    /* 图片调整 */
    .body_left_img {
        width: 100%;
        /*max-width: 300px;*/
        margin: 0 auto;
    }

    .body_left_img img {
        width: 100%;
        height: auto;
    }

    /* 选项卡片调整 */
    .content_body_options {
        display: grid;
        grid-template-columns: 1fr;
        gap: 15px;
        margin-top: 20px;
    }

    .content_body_options_item {
        width: 100%;
        padding: 15px;
        text-align: left;
        background: #fff;
        border-radius: 8px;
        box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    }

    .options_item_title {
        font-size: 16px;
        margin-bottom: 8px;
    }

    /* 背景色块调整 */
    .content1 {
        padding: 30px 0;
    }

    /* 导航栏调整 */
    .fix_navbar_box {
        /*position: relative;*/
        /*top: 0;*/
    }

    .fix_navbar {
        flex-wrap: wrap;
        justify-content: center;
        padding: 10px 0;
    }

    .fix_navbar li {
        width: 100%;
        text-align: center;
        padding: 8px 20px;
        border-bottom: 1px solid #eee;
    }
}

/* 小屏幕手机适配 */
@media screen and (max-width: 480px) {
    .content_body_title {
        font-size: 20px;
    }

    .content_body_text {
        font-size: 13px;
    }
    .container_flx {
        flex-direction: column;
    }
    .content_body_left {
        order: 1; /* 确保图片在最前面 */
    }

    .content_body_right {
        order: 2; /* 内容紧随其后 */
    }
    .content_body_options_item {
        padding: 12px;
        margin-top: 0;
    }

    .options_item_title {
        font-size: 15px;
    }

    .body_left_img {
        /*max-width: 250px;*/
    }
}
