.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;
    position: relative;
}

.home .main .content .dom1 .p1 {
    color: #0994D7;
    font-size: 50px;
    margin-bottom: 40px;
}

.home .main .content .dom1 .p2 {
    font-size: 50px;
    font-family: DIN-Bold;
    color: #333333;
}

.home .main .content .dom1 .address {
    width: 100%;
    margin: 40px 0;
}

.home .main .content .dom1 .address .item {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 30px;
    cursor: pointer;
}

.home .main .content .dom1 .address .item .icon {
    width: 44px;
    height: 44px;
    background: #0994D7;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.home .main .content .dom1 .address .item p {
    width: calc(98% - 44px);
    color: #333333;
    font-size: 18px;
    line-height: 1.8;
}

.home .main .content .dom1 .address .active p {
    color: #0994D7;
}

.home .main .content .dom1 .code {
    position: absolute;
    right: 0;
    top: 10%;
    display: inline-block;
    text-align: center;
}

.home .main .content .dom1 .code .pic {
    margin-bottom: 10px;
}

.home .main .content .dom1 .code p {
    font-size: 14px;
}

.home .main .content .dom1 .map {
    width: 100%;
    height: 600px;
    position: relative;
}

.home .main .content .dom1 .map #allmap {
    width: 100%;
    height: 600px;
}

.home .main .content .dom1 .map .add {
    position: absolute;
    left: 30px;
    top: 30px;
    border-radius: 10px;
    background: white;
    width: 160px;
    z-index: 10;
    text-align: center;
    box-shadow: 0px 8px 10px 0px rgba(0, 0, 0, 0.07);
}

.home .main .content .dom1 .map .add p {
    padding: 25px 0;
    font-size: 20px;
    cursor: pointer;
    transition: all 600ms;
}

.home .main .content .dom1 .map .add p:nth-child(1) {
    border-top-left-radius: 10px;
    border-top-right-radius: 10px;
}

.home .main .content .dom1 .map .add p:nth-child(2) {
    border-bottom-left-radius: 10px;
    border-bottom-right-radius: 10px;
}

.home .main .content .dom1 .map .add .active {
    background: #0994D7;
    color: white;
}

.home .main .window1 {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.home .main .window1 .lpic {
    width: 140px;
    background: #0994D7;
    padding: 20px 0;
    text-align: center;
}

.home .main .window1 .lpic img {
    max-width: 100%;
    object-fit: contain;
}

.home .main .window1 .text {
    width: calc(95% - 140px);
    color: #333333;
    line-height: 2;
}

@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 .p2 {
        font-size: 30px;
    }

    .home .main .content .dom1 .code {
        position: static;
        margin-bottom: 20px;
    }

    .home .main .content .dom1 .address {
        flex-direction: column;
        margin: 20px 0;
    }

    .home .main .content .dom1 .address .item {
        width: 100%;
        margin-bottom: 20px;
    }

    .home .main .content .dom1 .map {
        height: auto;
    }

    .home .main .content .dom1 .map .add {
        width: 100px;
        top: 15px;
        left: 15px;
    }

    .home .main .content .dom1 .map .add p {
        font-size: 14px;
        padding: 10px 0;
    }

    .home .main .content .dom1 .map .per img {
        width: 100px;
    }

    .home .main .content .dom1 .map #allmap {
        height: 300px;
    }
}

/*# sourceMappingURL=contact.css.map */
