.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 .icon {
    margin-bottom: 80px;
}

.home .main .content .dom1 .icon img {
    max-width: 100%;
    object-fit: contain;
}

.home .main .content .dom1 .p1 {
    color: #0994D7;
    font-size: 40px;
    margin-bottom: 20px;
}

.home .main .content .dom1 .p2 {
    color: #07339F;
    font-size: 24px;
    margin-bottom: 40px;
}

.home .main .content .dom1 .des {
    color: #333333;
    font-weight: lighter;
    line-height: 2;
    margin-bottom: 120px;
}

.home .main .content .dom1 .pic {
    position: relative;
}

.home .main .content .dom1 .pic .bg {
    position: absolute;
    left: 0;
    top: -60px;
    z-index: -1;
}

.home .main .content .dom1 .pic .pic1 {
    width: 95%;
    margin-left: 5%;
    overflow: hidden;
}

.home .main .content .dom1 .pic .pic1 img {
    width: 100%;
    display: block;
    object-fit: cover;
    transition: all 600ms;
}

.home .main .content .dom1 .pic .pic1:hover img {
    transform: scale(1.05);
}

@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 .icon {
        margin-bottom: 40px;
    }

    .home .main .content .dom1 .p1 {
        font-size: 24px;
    }

    .home .main .content .dom1 .p2 {
        font-size: 18px;
        margin-bottom: 20px;
    }

    .home .main .content .dom1 .des {
        margin-bottom: 60px;
    }

    .home .main .content .dom1 .pic .bg {
        top: -40px;
    }

    .home .main .content .dom1 .pic .bg img {
        max-height: 240px;
    }
}

/*# sourceMappingURL=about.css.map */
