.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: 40px;
}

.home .main .content .dom1 .form {
    width: 100%;
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
}

.home .main .content .dom1 .form .item {
    width: 49%;
    margin-bottom: 20px;
}

.home .main .content .dom1 .form .item input {
    width: 93%;
    background: #F7F8FC;
    padding: 20px 3%;
    outline: none;
    border: 1px solid transparent;
    color: #999999;
    font-size: 16px;
    transition: all 600ms;
}

.home .main .content .dom1 .form .item input:focus {
    border: 1px solid #0994D7;
}

.home .main .content .dom1 .form .item:last-child {
    width: 100%;
}

.home .main .content .dom1 .form .item textarea {
    width: 96.5%;
    background: #F7F8FC;
    padding: 20px 1.5%;
    outline: none;
    border: 1px solid transparent;
    color: #999999;
    font-size: 16px;
    height: 100px;
    resize: none;
    transition: all 600ms;
    font-family: auto;
}

.home .main .content .dom1 .form .item:last-child textarea::placeholder {
    font-family: Arial, Microsoft YaHei, sans-serif, PingFangSC-Regular;
}

.home .main .content .dom1 .form .item:last-child textarea:focus {
    border: 1px solid #0994D7;
}

.home .main .content .dom1 .submit {
    width: 200px;
    background: #0994D7;
    border: 1px solid #0994D7;
    text-align: center;
    padding: 15px 0;
    color: white;
    cursor: pointer;
    font-size: 18px;
}

.home .main .content .dom1 .policy {
    color: #999999;
    font-size: 14px;
    margin-top: 20px;
}

.message {
    color: #f00;
    margin-bottom: 15px
}

@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 .form .item {
        width: 100%;
        margin-bottom: 15px;
    }

    .home .main .content .dom1 .form .item:last-child textarea {
        width: 93%;
        padding: 20px 3%;
    }
}

/*# sourceMappingURL=coop.css.map */
