.news-banner {
    margin-top: 5rem;
    width: 100%;
    height: 36.375rem;
    background: cornflowerblue;
}

.news-banner > img {
    width: 100%;
    height: 100%;
}

.news-label {
    margin-top: 2rem;
    padding: 0 18.75%;
    width: 100%;
    text-align: left;
    font-size: 1rem;
    color: rgba(0, 0, 0, 0.4);
}

.news-column {
    margin-top: 4.5rem;
    width: 100%;
    text-align: center;
    font-size: 1.875rem;
    font-weight: bold;
    color: #000;
    padding: 0 18.75%;
    display: flex;
    justify-content: space-between;
    align-items: baseline;
}

.news-more {
    color: rgba(0, 0, 0, 0.6);
    font-size: 1.25rem;
    cursor: pointer;
}

.news-text {
    margin: 0 auto;
    color: rgba(0, 0, 0, 0.9);
    line-height: 3rem;;
    letter-spacing: 1px;
    font-size: 1.625rem;
}

.news-bar {
    margin-top: 2.25rem;
    width: 100%;
    height: 33.875rem;
    padding: 0 calc(18.75% + 3.75rem);
    display: flex;
    justify-content: space-between;
    flex-wrap: nowrap;
    overflow: hidden;
}

.news-item {
    width: calc((100% - 2.25rem) / 2);
    height: 32.625rem;
    background: #FFFFFF;
    box-shadow: 0 .25rem 1rem 0 rgba(0, 0, 0, 0.1);
    border-radius: 1rem;
    overflow: hidden;
    cursor: pointer;
    text-align: left;
}

.news-pic {
    width: 100%;
    display: flex;
}

.new-pic-sub {
    flex: 0 0 100%;
}

.news-pic-sub > img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.news-title {
    margin-top: 1.875rem;
    width: 100%;
    padding: 0 1.25rem;
    font-size: 1.375rem;
}

.news-info {
    margin: 1.25rem 0;
    width: 100%;
    padding: 0 1.25rem;
    display: flex;
    justify-content: space-between;
}

.news-info-text {
    font-size: 1.25rem;
    color: rgba(0, 0, 0, 0.5);
}

.news-tabs {
    margin-top: 2.25rem;
    width: 100%;
    height: 3.75rem;
    display: flex;
    justify-content: space-between;
    padding: 0 32.5%;
}

.news-tab {
    position: relative;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    font-weight: bold;
    font-size: 1.5rem;
    color: rgba(0, 0, 0, 0.4);
    cursor: pointer;
}

.news-underline {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    display: flex;
    justify-content: center;
}

.news-underline > div {
    width: .75rem;
    height: .25rem;
    border-radius: .125rem;
}

.news-tab.select {
    color: #000;
}

.select > .news-underline > div {
    background: #39BD8E;
}

.content {
    width: 100%;
    height: 0;
    overflow: hidden;
    visibility: hidden;
}

.content.select {
    height: auto;
    visibility: visible;
}

.news-load-more {
    margin-top: 3.125rem;
    width: 100%;
    text-align: center;
    color: rgba(0, 0, 0, 0.4);
    font-size: 1.5rem;
}

.detail {
    width: 100%;
    justify-content: center;
    padding: 0 18.75%;
}

.detail-title {
    margin-top: 2.25rem;
    width: 100%;
    text-align: center;
    font-size: 2.5rem;
    color: #000;
}

.detail-info {
    margin-top: 2.75rem;
    width: 100%;
    font-size: 1.5rem;
    color: rgba(0, 0, 0, 0.4);
}

.detail-img {
    margin: 2.75rem auto 0;
}

.detail-text {
    margin-top: 2.75rem;
    font-size: 1.25rem;
    color: rgba(0, 0, 0, 0.9);
    line-height: 2.125rem;
    text-indent: 2.75rem;
    text-align: left;
}

.detail-bar {
    margin-top: 10rem;
    width: 100%;
    display: flex;
    justify-content: space-between;
}

.detail-prev,
.detail-next {
    width: calc((100% - 17rem) / 2);
    font-size: 1.375rem;
    color:rgba(0, 0, 0, 0.6);
    text-align: left;
    cursor: pointer;
}

.detail-next {
    text-align: right;
}


/**** **** 手机适配 **** ****/
@media screen and (max-device-width: 480px) {
    .news-bar {
        width: 100%;
        height: auto;
        padding: 0 1rem 1rem;
    }

    .news-item {
        height: auto;
    }

    .detail {
        padding: 0 1rem;
    }

    .news-label {
        padding: 0 1rem;
        font-size: .85rem;
    }

    .detail-title {
        font-size: 1.75rem;
    }

    .detail-info {
        font-size: 1rem;
    }
    
    .detail-text {
        font-size: 1rem;
        line-height: 2.125rem;
        text-indent: 2.75rem;
        text-align: left;
    }
}