.apply_con {
    width: 100%;
    background: url('../img/apply/applybg.png') no-repeat;
    background-size: cover;
    padding-top: 0.91rem;
    padding-bottom: 0.81rem;
}

.int_title {
    position: relative;
    font-family: Arial, Arial;
    font-weight: bold;
    font-size: 0.9rem;
    color: rgba(0, 95, 189, 0.05);
    text-align: center;
    margin-bottom: 0.52rem;
}

.int_title .int_title2 {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-family: Microsoft YaHei, Microsoft YaHei;
    font-weight: bold;
    font-size: 0.5rem;
    color: #005FBD;
}

.apply_con .int_title {
    margin-bottom: 0.56rem;
}

.apply_con .apply_img_con {
    display: flex;
    flex-wrap: wrap;
    width: 17rem;
    margin: 0 auto;
}

.apply_con .apply_img_con .apply_img_item {
    display: block;
    width: 2.64rem;
    height: 0.97rem;
    margin-right: 0.23rem;
    margin-bottom: 0.25rem;
    overflow: hidden;
}

.apply_con .apply_img_con .apply_img_item:nth-child(6n) {
    margin-right: 0;
}

.apply_img_item img {
    display: block;
    width: 100%;
    /* height: 100%; */
    object-fit: cover;
    transition: all 0.3s;
}

.apply_con .apply_img_con .apply_img_item:hover img {
    transform: scale(1.1);
}

.typical {
    width: 100%;
    background: url('../img/apply/applybg.png') no-repeat;
    background-size: cover;
    padding-top: 0.79rem;
}

.typical .typ_con {
    width: 5.39rem;
    height: 4.13rem;
    margin-right: 0.41rem;
    margin-bottom: 0.83rem;
}

.typical .typ_con:nth-child(3n) {
    margin-right: 0;
}

.typical_con {
    display: flex;
    flex-wrap: wrap;
    width: 17rem;
    margin: 0 auto;
}

.typical .typ_con .typ_item {
    position: relative;
    display: flex;
    align-items: flex-end;
    justify-content: center;
    padding-bottom: 0.23rem;
    box-sizing: border-box;
    width: 100%;
    height: 100%;
    background: url('../img/apply/applyitem1.png') no-repeat;
    background-size: cover;
    border-radius: 0 0 0.4rem 0;
}



.typical .typ_con .typ_item_bot {
    font-family: Microsoft YaHei, Microsoft YaHei;
    font-weight: 400;
    font-size: 0.27rem;
    color: #FFFFFF;
    text-align: center;
}

.typ_item .typ_item_mod {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('../img/apply/applyitem2.png') no-repeat;
    background-size: cover;
    opacity: 0;
    transition: all 0.3s;
    border-radius: 0 0 0.4rem 0;
}

.typ_item:hover .typ_item_mod {
    opacity: 1;
}

.typ_item .typ_item_mod .typ_item_title {
    margin-top: 0.72rem;
    margin-bottom: 0.35rem;
    font-family: Microsoft YaHei, Microsoft YaHei;
    font-weight: bold;
    font-size: 0.3rem;
    color: #FFFFFF;
    text-align: center;
}

.typ_item .typ_item_mod .typ_item_text {
    width: 4.5rem;
    height: 1.25rem;
    margin: 0 auto 0.61rem;
    font-family: Microsoft YaHei, Microsoft YaHei;
    font-weight: 400;
    font-size: 0.16rem;
    color: #FFFFFF;
    line-height: 0.3rem;
}

.typ_item .typ_item_mod .typ_item_btn {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 0.37rem;
    height: 0.22rem;
    margin: 0 auto;
    background: #FFFFFF;
    border-radius: 0.11rem 0 0.11rem 0;
}

.typ_item_btn img {
    width: 0.19rem;
    height: 0.06rem;
}

.typical .page {
    padding-top: 0.13rem;
    margin-bottom: 1.05rem;
}

.typ_nav{
    display: flex;
    justify-content: center;
    margin-bottom: 0.97rem;
}

.typ_nav .nav_item{
    display: block;
    margin: 0 0.68rem;
    transition: all 0.3s;
    font-family: Microsoft YaHei, Microsoft YaHei;
    font-weight: bold;
    font-size: 0.2rem;
    color: #005FBD;
}

.typ_nav .nav_item:hover{
    position: relative;
    color: #009D44;
}

.typ_nav .nav_item:hover::after{
    content: "";
    position: absolute;
    left: 50%;
    bottom: -0.12rem;
    transform: translateX(-50%);
    width: 100%;
    height: 0.02rem;
    background:#009D44;
    transition: all 0.3s;
}


.typ_nav .nav_item.active{
    position: relative;
    color: #009D44;
}

.typ_nav .nav_item.active::after{
    content: "";
    position: absolute;
    left: 50%;
    bottom: -0.12rem;
    transform: translateX(-50%);
    width: 100%;
    height: 0.02rem;
    background:#009D44;
    transition: all 0.3s;
}

@media (max-width:1200px){
    .apply_con .apply_img_con{
        width:100%;
        gap: .2rem;
        display: grid;
        grid-template-columns: repeat(2,1fr);
        padding: .2rem;
    }
    .apply_con .apply_img_con .apply_img_item{
        width: 100%;
        margin: 0;
    }
    .apply_img_item img{
        height:auto;
    }
    .typical_con{
        display:grid;
        grid-template-columns:repeat(2,1fr);
        width: 100%;
        padding: .2rem;
        gap: .2rem;
    }
    .typical .typ_con{
        width:100%;
        
    }
}