.home {
    width: 100%;
    height: calc(100vh - 400px);
    overflow: hidden;
    position: relative;
}

.home .banner-img {
    width: 100%;
}

.banner {
    height: 100%;
    position: relative;
}

.banner::after {
    transition: 1s;
    position: absolute;
    top: 0;
    left: 0;
    content: "";
    background-color: rgba(31, 161, 160, 0.6);
    z-index: 1;
    width: 100%;
    height: 100%;
}

.home .banner-font {
    text-align: center;
    color: white;
    position: absolute;
    z-index: 2;
    top: calc(50% - 0px);
    width: 100%;
    letter-spacing: 10px;
}

.home .banner-font p {
    font-size: 100px;
    letter-spacing: 3px;
    opacity: 0.4;
}

.subtitle {
    font-size: 35px;
    text-align: center;
    color: #1FA1A0;
    margin-top: 50px;
    letter-spacing: 3px;
}

.subtitle-english {
    font-size: 15px;
    text-align: center;
    color: rgb(101, 101, 101);
    margin-top: -12px;
    margin-bottom: 30px;
}

.row {
    margin-bottom: 30px;
}

.bg {
    width: 100%;
    height: 100%;
    background-color: #e4f7f7;
    padding: 25px 20px;

}

.map-bg {
    width: 100%;
    height: 100%;
    background-color: #e4f7f7;
    padding-top: 25px;
    position: relative;
}

#map {
    position: absolute;
    width: 100%;
    height: 280px;
    bottom: 0;
}

.bg p {
    margin-bottom: 30px;
}

.img img {
    width: 100%;
}

hr {
    margin-right: calc(100% - 100px);
    margin-top: 0px;
    margin-bottom: 15px;
    width: 100px;
    height: 5px;
    background-color: #1FA1A0;
}

.contact-content {
    margin-top: 30px;
    margin-bottom: 100px;
}

.contact-content .email {
    margin-top: 30px;
}

.map {
    margin-left: 20px;
}

.title {
    font-size: 20px;
    margin-right: 10px;
    letter-spacing: 3px;
}

.detail {
    font-size: 20px;
    color: rgb(101, 101, 101);
    font-weight: lighter;
}



@media(min-width:1600px) {
    #map {
        height: 400px;
    }
}

/* 平板和手机 */
@media (max-width: 992px) {
    .home {
        height: 230px;
    }

    .home .banner-font {
        top: calc(50% + 10px);
    }

    .home .banner-font p {
        font-size: 25px;
    }

    .subtitle {
        font-size: 25px;
    }

    .subtitle-english {
        font-size: 15px;
    }

    .bg {
        height: 242px;
        margin-bottom: 20px;
    }

    .map-bg {
        height: 310px;
        margin-bottom: 20px;
    }

    .map-p {
        font-size: 12px;
    }

    #map {
        height: 250px;
    }

    hr {
        height: 2px;
        width: 80px;
        margin-bottom: 0px;
        margin-right: calc(100% - 80px)
    }

    .contact-content {
        margin-bottom: 50px;
        margin-top: 20px;
    }

    .contact-content .email,
    .map-bg {
        margin-top: 20px;
    }

    .bg p {
        margin-bottom: 20px;
    }

    h5 {
        font-size: 14px;
    }

    .title {
        font-size: 15px;
        margin-right: 0px;
    }

    .detail {
        font-size: 15px;
    }
}







/* 笔记本电脑 */
@media screen and (max-width: 1920px) and (min-width:1024px) {
    .home {
        height: calc(100vh - 150px);
    }
}