.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: #111111;
    font-size: 50px;
    margin-bottom: 40px;
}

.home .main .content .dom1 .nr {
    margin-bottom: 60px;
}

.home .main .content .dom1 .nr p {
    display: flex;
    color: #333333;
    font-size: 20px;
    font-weight: lighter;
    margin-bottom: 10px;
    line-height: 1.6;
}

.home .main .content .dom1 .nr p::before {
    width: 10px;
    height: 10px;
    border: 2px solid #22A6E9;
    border-radius: 50%;
    content: "";
    display: block;
    margin-top: 8px;
}

.home .main .content .dom1 .nr p span {
    width: calc(95% - 10px);
    margin-left: 20px;
}

.home .main .content .dom1 .allItems {
    width: 100%;
    display: flex;
    flex-wrap: wrap;
}

.home .main .content .dom1 .allItems .item {
    width: 30%;
    margin-right: 3.3%;
    margin-bottom: 20px;
}

.home .main .content .dom1 .allItems .item .pic {
    overflow: hidden;
}

.home .main .content .dom1 .allItems .item .pic img {
    width: 100%;
    display: block;
    transition: all 600ms;
    object-fit: cover;
}

.home .main .content .dom1 .allItems .item p {
    text-align: center;
    color: #111111;
    transition: all 600ms;
    position: relative;
    padding: 25px 0;
}

.home .main .content .dom1 .allItems .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 .allItems .item:hover .pic img {
    transform: scale(1.05);
}

.home .main .content .dom1 .allItems .item:hover p {
    color: #0090D7;
}

.home .main .content .dom1 .allItems .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;
    }

    .home .main .content .dom1 .allItems {
        justify-content: space-between;
    }

    .home .main .content .dom1 .allItems .item {
        width: 48%;
        margin-right: 0;
    }
}

/*# sourceMappingURL=dzxjc.css.map */
