.lbanner-pp .lbanner_desc {
    display: none !important;
}


.S_App_main {
    margin-top: 5%;
}

.S_App_main .app_list .app_item {
    margin-bottom: 70px;
    justify-content: space-between;
    align-items: center;
}

.S_App_main .app_list .app_item:nth-child(even) {
    flex-direction: row-reverse;
}

.S_App_main .app_list .app_item .item_img {
    width: 48%;
    position: relative;
    height: 0;
    overflow: hidden;
    padding-bottom: 32%;
}

.S_App_main .app_list .app_item .item_img img {
    position: absolute;
    width: 100%;
    height: 100%;
    left: 0;
    top: 0;
    object-fit: cover;
    -webkit-transition: all .5s ease-out 0ms;
    -moz-transition: all .5s ease-out 0ms;
    -o-transition: all .5s ease-out 0ms;
    transition: all .5s ease-out 0ms;
}

.S_App_main .app_list .app_item .item_img:hover img {
    -webkit-transform: scale(1.08);
    -moz-transform: scale(1.08);
    -o-transform: scale(1.08);
    transform: scale(1.08);
}

.S_App_main .app_list .app_item .item_info {
    width: 48%;
}

.S_App_main .app_list .app_item .item_info .item_title {
    font-family: 'Arial-Bold';
    font-weight: bold;
    font-size: 32px;
    color: #333333;
    line-height: 28px;
    text-align: left;
    font-style: normal;
    text-transform: uppercase;
    display: flex;
    align-items: center;
    margin-bottom: 25px;
}

.S_App_main .app_list .app_item .item_info .item_title a {
    display: inline-block;
    color: #333333;
}

.S_App_main .app_list .app_item .item_info .item_title a:hover {
    color: var(--conmmonColor);
}

.S_App_main .app_list .app_item .item_info .item_title:before {
    content: '';
    display: inline-block;
    width: 16px;
    height: 16px;
    background: var(--conmmonColor);
    border-radius: 50%;
    margin-right: 15px;
}

.S_App_main .app_list .app_item .item_info .item_desc {
    font-family: 'Arial-Regular';
    font-weight: 400;
    font-size: 16px;
    color: #666666;
    line-height: 28px;
    text-align: left;
    font-style: normal;
    text-transform: none;
}

.S_App_main .app_list .app_item .item_info .item_desc a{
    display: inline-block;
    color: #666666;
}

.S_App_main .app_list .app_item .item_info .item_desc a:hover{
    color: var(--conmmonColor);
}


@media only screen and (max-width: 950px) {}

@media only screen and (max-width: 768px){
    .S_App_main .app_list .app_item{
        flex-direction: column !important;
    }
    .S_App_main .app_list .app_item .item_img{
        width: 100%;
        margin-bottom: 30px;
        padding-bottom: 68%;
    }
    .S_App_main .app_list .app_item .item_info{
        width: 100%;
    }
}