.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 {
    display: inline-block;
    margin-right: 1.6%;
    margin-bottom: 30px;
    text-align: center;
}

.home .main .content .dom1 .allPics .item .pic {
    width: 200px;
    height: 200px;
    background: #F9FBFF;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.home .main .content .dom1 .allPics .item .pic img {
    max-width: 90%;
    max-height: 130px;
    object-fit: contain;
    transition: all 600ms;
}

.home .main .content .dom1 .allPics .item p {
    color: #111111;
    font-weight: lighter;
    margin-top: 20px;
    transition: all 600ms;
}

.home .main .content .dom1 .allPics .item:hover .pic img {
    transform: scale(1.1);
}

.home .main .content .dom1 .allPics .item:hover p {
    color: #0994D7;
}

@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 {
        justify-content: space-between;
    }

    .home .main .content .dom1 .allPics .item {
        width: 48%;
        margin-right: 0;
        margin-bottom: 20px;
    }

    .home .main .content .dom1 .allPics .item .pic {
        width: 100%;
        height: 150px;
    }
}

/*# sourceMappingURL=partner.css.map */
