.home .main {
    width: 90%;
    margin: 182px auto 0 auto;
    display: flex;
    justify-content: space-between;
    overflow: hidden;
}

.home .main .lNav {
    width: 300px;
    opacity: 0;
}

.home .main .lNav .item {
    width: 240px;
    background: rgba(9, 148, 215, 0.05);
    margin-bottom: 10px;
    display: flex;
    padding: 20px 30px;
    cursor: pointer;
    transition: all 600ms;
}

.home .main .lNav .item .pic {
    position: relative;
}

.home .main .lNav .item .pic img {
    transition: all 600ms;
}

.home .main .lNav .item .pic img:nth-child(2) {
    position: absolute;
    left: 0;
    top: 0;
    opacity: 0;
}

.home .main .lNav .item p {
    margin-left: 20px;
    color: #333333;
    font-size: 20px;
    transition: all 600ms;
}

.home .main .lNav .item:hover {
    background: #0994D7;
}

.home .main .lNav .item:hover p {
    color: white;
}

.home .main .lNav .item:hover .pic img:nth-child(1) {
    opacity: 0;
}

.home .main .lNav .item:hover .pic img:nth-child(2) {
    opacity: 1;
}

.home .main .lNav .active {
    background: #0994D7;
}

.home .main .lNav .active p {
    color: white;
}

.home .main .lNav .active .pic img:nth-child(1) {
    opacity: 0;
}

.home .main .lNav .active .pic img:nth-child(2) {
    opacity: 1;
}

.home .main .content {
    width: calc(95% - 300px);
}

.home .main .content .dom1 {
    margin-bottom: 80px;
}

.home .main .content .dom1 .p1 {
    color: #0994D7;
    font-size: 50px;
    margin-bottom: 60px;
}

.home .main .content .dom1 .allPics {
    width: 100%;
    display: flex;
    flex-wrap: wrap;
}

.home .main .content .dom1 .allPics .item {
    width: 23%;
    margin-right: 2.2%;
    margin-bottom: 40px;
}
.home .main .content .dom1 .allPics .item:nth-child(4n) {
    
    margin-right: 0%; 
}

.home .main .content .dom1 .allPics .item .pic {
    background: #F9FBFF;
    padding: 60px 0;
    position: relative;
    margin-bottom: 20px;
}

.home .main .content .dom1 .allPics .item .pic .icon {
    position: absolute;
    right: 0;
    bottom: 0;
    opacity: 0.8;
}

.home .main .content .dom1 .allPics .item .pic .c {
    width: 95%;
    margin: 0 auto;
    text-align: center;
}

.home .main .content .dom1 .allPics .item .pic .c img {
    max-width: 100%;
    object-fit: contain;
    transition: all 600ms;
    max-height: 200px;
}

.home .main .content .dom1 .allPics .item p {
    text-align: center;
    color: #111111;
    transition: all 600ms;
    position: relative;
    padding-bottom: 25px;
}

.home .main .content .dom1 .allPics .item p::after {
    content: "";
    display: block;
    width: 0;
    transition: all 600ms;
    position: absolute;
    left: 0;
    bottom: 0;
    height: 2px;
    background: linear-gradient(90deg, #0090D8, #8FC320);
}

.home .main .content .dom1 .allPics .item:hover .pic .c img {
    transform: scale(1.05);
}

.home .main .content .dom1 .allPics .item:hover p {
    color: #0090D7;
}

.home .main .content .dom1 .allPics .item:hover p::after {
    width: 100%;
}

@media screen and (max-width: 1024px) {
    .home .main {
        flex-direction: column;
        margin-top: 75px;
    }

    .home .main .lNav {
        width: 100%;
        margin-bottom: 30px;
        opacity: 1;
    }

    .home .main .lNav .item {
        width: 90%;
        padding: 20px 5%;
    }

    .home .main .content {
        width: 100%;
    }

    .home .main .content .dom1 {
        margin-bottom: 40px;
    }

    .home .main .content .dom1 .p1 {
        font-size: 24px;
        margin-bottom: 20px;
    }

    .home .main .content .dom1 .allPics .item {
        margin-left: 0;
        width: 100%;
        margin-bottom: 20px;
    }

    .home .main .content .dom1 .allPics .item .pic {
        padding: 30px 5%;
    }
}

/*# sourceMappingURL=honor.css.map */
