    .item_container {

        /*height: 90vh;
        width: 100%;*/
        display: flex;
        align-items: center; /* 垂直居中对齐 */
    }
    .item_content {
        width: 55%;

        color: white;
        display: flex;
        flex-direction: column; /* 文本块垂直排列 */
        justify-content: center; /* 如果需要在高度上有更多空间时，使文本垂直居中 */
        text-align: left;
 
        padding-left: 0;
    }

    .item_content_top_small {
        width: 50%;
        padding: 50px 0 0 80px;

    }

    .item_light_text {
        margin: 0;
        color: rgba(255, 128, 0, 1);
        font-size: 40rem;
        font-weight: bold;
    }

    .item_icons {
        display: flex;
        justify-content: space-between;
        margin-top: 10px;
        width: 100%;
    }
    .item_icons_xl {
        display: flex;
        justify-content: space-between;
        margin-top: 20px;
        width: 100%;
    }

    .item_icons_icon {
        text-align: center;

    }
    .item_icon_img {
        height: 48px;
    }

    .item_icon_img_xl {
        height: 75px;
    }

    .item_img_div {
        width: 45%;
        background-size: cover;
        background-position: center;
    }

    .item_img {
        width: 100%;
        height: 100%;
        object-fit: cover;
    }
    .item_img_right {
        margin: 0 0 0 0;
    }
    .item_img_left {
        margin: 0 0 0 0;

    }