.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;
}

.NewsDetail-content {
    padding-top: 100px;
    padding-bottom: 100px;
}

.title {
    display: inline-block;
    font-size: 30px;
    font-weight: bold;
    margin-bottom: 35px;
    letter-spacing: 3px;
}

.title ::after {
    content: "";
    width: 100px;
    height: 3px;
    background-color: #1FA1A0;

}

.title span {
    position: relative;
}

.title span::after {
    content: "";
    position: absolute;
    bottom: 150%;
    width: calc(100% - 120px);
    /* height: calc(50% + 2px); */
    height: 5px;
    background-color: #1FA1A0;
    left: 0px;
}

.detail {
    line-height: 1.5;
    font-size: 20px;
    text-indent: 2em;
    text-align: justify;
    letter-spacing: 1px;
}

.enDetail {
    line-height: 1.5;
    font-size: 20px;
    text-align: justify;
    letter-spacing: 1px;
}

.key {
    font-weight: bold;
}

.NewsDetail-content img {
    width: 90%;
    display: block;
    margin: 0 auto;
    margin-top: 50px;
}

.img-text {
    text-align: center;
    margin-top: 1rem;
    font-size: 20px;
}

.subtitle {
    display: block;
    color: #1FA1A0;
    font-size: 25px;
    margin-bottom: 20px;
    letter-spacing: 3px;
}

.NewsDetail-img {
    border: 2px solid #1FA1A0;
    /* padding-top: 50px; */
    padding-bottom: 30px;
    margin-bottom: 30px;
}

.author {
    font-size: 20px;
    color: #1FA1A0;
    float: right;
}





/* 平板和手机 */
@media (max-width: 992px) {
    .home {
        height: 230px;
    }

    .home .banner-font {
        top: calc(50% + 10px);
        letter-spacing: 3px;
    }

    .home .banner-font p {
        font-size: 25px;
    }

    .home .banner-img {
        height: 100%;
    }

    .title {
        font-size: 20px;
        margin-bottom: 10px;
    }

    .NewsDetail-content {
        padding-top: 50px;
        padding-bottom: 50px;
    }

    .detail,
    .enDetail {
        font-size: 15px;
        /* line-height: 30px; */
    }

    .subtitle {
        font-size: 18px;
    }

    .img-text {
        font-size: 15px;
    }

    .author {
        font-size: 15px;
    }

    .NewsDetail-img {
        padding-bottom: 10px;
    }

    .NewsDetail-content img {
        margin-top: 20px;
    }

    .title span::after {
        width: 0px;
    }
}

/* 笔记本电脑 */
@media screen and (max-width: 1920px) and (min-width:1024px) {
    .home {
        height: calc(100vh - 150px);
    }
}