.c-flex {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-flex-wrap: wrap;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
}
.just-betw {
    justify-content: space-between
}
.just-cen {
    justify-content: center
}
.just-end {
    justify-content: end;
}
.just-around {
    justify-content: space-around
}
.align-start {
    align-items: flex-start
}
.align-base {
    align-items: baseline
}
.overflow-hidden {
    overflow: hidden;
}

/* 暂无信息 */
.bg {
    overflow: hidden;
    position: relative;
}
.bg_adviceimg {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    background: #f1f1f1;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 36px;
    color: #cccccc;
    font-weight: 600;
}
.nodata-layer{
    width: 100%;
    flex-direction: column;
    background: #FFFFFF;
    /* padding: 50px 0; */
    box-sizing: border-box;
    position: relative;
}
.nodata-layer p{
    font-size: 16px;
    color: #999;
}


.application_pg01 {
    border-top: 1px solid #eee;
    padding-top: 35px;
}
.application_pg01 .list{
    margin-bottom: 55px;
}
.application_pg01 .list:last-child{
    margin-bottom: 0;
}
.application_pg01 .list:nth-child(2n){
    flex-direction: row-reverse;
}
.application_pg01 .list .img{
    border-radius: 20px;
    overflow: hidden;
    width: 49.56%;
    height: 300px;
}
.application_pg01 .list .img img{
    max-width: 100%;
}
.application_pg01 .list .texts{
    width: 44.5%;
    margin-right: 2.4%;
}
.application_pg01 .list .texts .tit{
    margin-bottom: 10px;
    color: #ec670f;
    font-size: 36px;
    letter-spacing: 4px;
}
.application_pg01 .list .texts .company {
    color: #333333;
    font-size: 22px;
    font-weight: bold;
}
.application_pg01 .list .texts .con{
    margin: 14px 0 20px;
    /* color: #333333;
    font-size: 18px;
    line-height: 30px; */
    text-align: left;
}




@keyframes ysfadeInUp {
    0% {
        opacity: 0;
        -webkit-transform: translate3d(0, 60px, 0);
        transform: translate3d(0, 60px, 0)
    }
    to {
        opacity: 1;
        -webkit-transform: none;
        transform: none
    }
}
@keyframes fadeInUpimg {
    0% {
        transform: scale(1.5);
    }
    100% {
        transform: none;
    }
}


@media only screen and (max-width: 1366px) {
    .application_pg01 .list .img{
        width: 100%;
        height: 256px;
    }
    .application_pg01 .list .texts {
        width: 100%;
        margin-right: 0;
    }
    .application_pg01 .list {
        flex-direction: column-reverse;
    }
    .application_pg01 .list:nth-child(2n) {
        flex-direction: column-reverse;
    }
    .application_pg01 .list {
        margin-bottom: 30px;
    }
    .application_pg01 .list .texts .tit{
        font-size: 30px;
    }
    .application_pg01 .list .texts .company {
        font-size: 20px;
    }
    .application_pg01 .list .texts .con {
        margin: 10px 0;
    }
    .application_pg01 .list .texts .con p {
        font-size: 16px !important;
    }
}