.home {
    margin-top: 100px;
}

.home .banner {
    width: 100%;
    position: relative;
}

.home .banner p {
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    color: white;
    font-size: 148px;
 text-align:center;
}

.home .banner img {
    width: 100%;
    display: block;
    object-fit: cover;
}

.home .main {
    margin-bottom: 120px;
}

.home .main .pInfo {
    width: 90%;
    margin: 60px auto;
    display: flex;
    justify-content: space-between;
}

.home .main .pInfo .l {
    width: 700px;
}

.home .main .pInfo .l .sw1 {
    width: 100%;
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.5);
    padding: 60px 0;
    background: white;
}

.home .main .pInfo .l .sw1 .swiper-container .swiper-wrapper .swiper-slide .pic {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 500px;
    margin: 0 auto;
}

.home .main .pInfo .l .sw1 .swiper-container .swiper-wrapper .swiper-slide .pic img {
    max-width: 90%;
    max-height: 500px;
    display: block;
    object-fit: contain;
}

.home .main .pInfo .l .sw2 {
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.5);
    margin-top: 30px;
    position: relative;
    padding: 30px 0;
}

.home .main .pInfo .l .sw2 .prev {
    position: absolute;
    left: 10px;
    top: 50%;
    transform: translateY(-50%);
    z-index: 10;
    cursor: pointer;
}

.home .main .pInfo .l .sw2 .next {
    position: absolute;
    right: 10px;
    top: 50%;
    transform: translateY(-50%);
    z-index: 10;
    cursor: pointer;
}

.home .main .pInfo .l .sw2 .swiper-container {
    width: 85%;
    margin: 0 auto;
}

.home .main .pInfo .l .sw2 .swiper-container .swiper-wrapper .swiper-slide .pic {
    width: 100%;
    height: 180px;
    border: 1px solid rgba(0, 0, 0, 0.5);
    max-width: calc(100% - 2px);
}

.home .main .pInfo .l .sw2 .swiper-container .swiper-wrapper .swiper-slide .pic img {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: contain;
    transition: all 600ms;
    transform: scale(0.8);
}

.home .main .pInfo .l .sw2 .swiper-container .swiper-wrapper .swiper-slide-active .pic {
    border-color: black;
}

.home .main .pInfo .l .sw2 .swiper-container .swiper-wrapper .swiper-slide-active .pic img {
    transform: scale(1);
}

.home .main .pInfo .r {
    width: calc(95% - 700px);
}

.home .main .pInfo .r .name {
    color: #68859A;
    font-size: 90px;
}

.home .main .pInfo .r a {
    display: flex;
    align-items: center;
    color: white;
    background: #929EB2;
    justify-content: center;
    font-size: 27px;
    width: 280px;
    padding: 10px 20px;
    margin-top: 100px;
}

.home .main .pInfo .r a img {
    width: 20px;
    margin-left: 10px;
}

.home .main .detail {
    width: 90%;
    margin: 60px auto;
}

.home .main .detail .p1 {
    color: #4A7796;
    font-size: 40px;
}

.home .main .detail .gf {
    margin-top: 60px;
}

.home .main .detail .gf .dt {
    position: relative;
}

.home .main .detail .gf .dt img {
    width: 100%;
    display: block;
}

.home .main .detail .gf .dt p {
    position: absolute;
    left: 30px;
    top: 50%;
    transform: translateY(-70%);
    color: white;
    font-size: 37px;
}

.home .main .detail .gf .nr {
    margin: 40px 0;
color: #231815;
    font-size: 39px;
}

.home .main .detail .gf .nr table {
    width: 100%;
    border: 2px solid #231815;
    border-bottom: none;
    border-right: none;
    text-align: center;
    color: #231815;
    font-size: 39px;
    border-spacing: 0;
}

.home .main .detail .gf .nr table td {
    width: 50%;
    border-bottom: 2px solid #231815;
    border-right: 2px solid #231815;
    padding: 15px 0;
}

.home .main .detail .gf .html {
    margin: 40px 0;
    font-size: 39px;
    line-height: 2;
}

.home .main .detail .gf .html img {
    max-width: 100%;
    object-fit: contain;
}

.home .main .d2 .t {
    background: #F1F7FB;
    padding: 30px 5%;
    color: #231815;
    font-size: 36px;
}

.home .main .d2 .form {
    margin: 30px 5%;
}

.home .main .d2 .form .item {
    position: relative;
    width: 100%;
    height: 50px;
    border: 1px solid #040000;
    color: #231815;
    text-indent: 20px;
    font-size: 24px;
    line-height: 50px;
    margin-bottom: 20px;
    cursor: pointer;
}

.home .main .d2 .form .item input {
    width: 50%;
    height: 50px;
    border: 1px solid #040000;
    color: #231815;
    font-size: 24px;
    text-indent: 20px;
    position: absolute;
    left: 25%;
    top: -50px;
    display: none;
    transform: scale(1.6);
}
.home .main .d2 .form .item input::placeholder {
    color: #231815;
}
.home .main .d2 .form .item:hover input {
    display: block;
}

.home .main .d2 .form .submit {
    background: #F1F7FB;
    text-align: center;
    color: #231815;
    font-size: 24px;
    letter-spacing: 3px;
    padding: 15px 0;
    border-radius: 30px;
    cursor: pointer;
}

@media screen and (max-width: 1200px) {
    .home {
        margin-top: 60px;
    }

    .home .banner p {
        font-size: 50px;
    }

    .home .main {
        margin-bottom: 60px;
    }

    .home .main .pInfo {
        margin-top: 30px;
        flex-direction: column;
    }

    .home .main .pInfo .l {
        width: 100%;
    }

    .home .main .pInfo .l .sw1 {
        padding: 30px 0;
    }

    .home .main .pInfo .l .sw2 .prev img, .home .main .pInfo .l .sw2 .next img {
        width: 15px;
    }

    .home .main .pInfo .l .sw2 .swiper-container .swiper-wrapper .swiper-slide .pic {
        height: auto;
    }

    .home .main .pInfo .r {
        width: 100%;
        margin-top: 30px;
    }

    .home .main .pInfo .r .name {
        font-size: 40px;
    }

    .home .main .pInfo .r a {
        margin-top: 30px;
    }

    .home .main .detail .gf {
        margin-top: 30px;
    }

    .home .main .detail .gf .dt img {
        display: none;
    }

    .home .main .detail .gf .dt p {
        position: static;
        color: black;
        transform: translateY(0);
    }

    .home .main .detail .gf .nr table {
        font-size: 28px;
    }

    .home .main .d2 .form .item {
        border: none;
    }

    .home .main .d2 .form .item p {
        display: none;
    }

    .home .main .d2 .form .item input {
        position: static;
        display: block;
        width: 100%;
        font-size: 20px;
        transform: scale(1);
        outline: none;
    }
}

/*# sourceMappingURL=proinfo.css.map */
