.news-banner {
    position: relative;
}

.news-banner img {
    width: 100%;
}

.news-banner div {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    text-align: center;
}

.news-banner div p:nth-child(1) {
    color: #fff;
    font-size: 30px;
    line-height: 40px;
    margin-bottom: 0;
    font-weight: bold;
}

.news-banner div p:nth-child(2) {
    color: #fff;
    font-size: 20px;
    line-height: 40px;
    margin-bottom: 0;
    text-transform: uppercase;
    letter-spacing: 8px
}

.news-inner2 {
    overflow: hidden;
    padding-bottom: 120px;
}


.swiper-container-ns {
    margin-bottom: 30px;
}

.swiper-container-ns .swiper-slide {
    display: flex;
    background: #fff;
}

.swiper-container-ns .swiper-slide .left {
    width: 50%;
    padding-right: 50px;
}

.swiper-container-ns .swiper-slide .left img {
    width: 100%;
}

.swiper-container-ns .swiper-slide .right {
    width: 50%;
    padding-left: 50px;
    position: relative;
}

.swiper-container-ns .swiper-slide .right:after {
    content: '';
    position: absolute;
    bottom: 0;
    right: 0;
    width: calc(100% - 50px);
    height: 1px;
    display: block;
    background: #e9e9e9;
}

.swiper-container-ns .swiper-slide .right p:nth-child(1) {
    font-size: 28px;
    color: #000000;
    margin-bottom: 25px;
    line-height: 1.1;
    display: -webkit-box;
    -webkit-line-clamp: 1;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.swiper-container-ns .swiper-slide .right span:nth-child(2) {
    font-size: 16px;
    color: #999999;
    line-height: 1.1;
    margin-bottom: 40px;
    display: block;
}

.swiper-container-ns .swiper-slide .right p:nth-child(3) {
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
    font-size: 16px;
    line-height: 26px;
    margin-bottom: 45px;
    color: #999999;
}

.swiper-container-ns .swiper-slide .right a:nth-child(4) {
    background: #d80414;
    color: #fff;
    font-size: 16px;
    width: 160px;
    height: 50px;
    display: block;
    line-height: 47px;
    text-align: center;
    border: 1px solid #d80414;
    border-radius: 10px;
    transition: .4s;
}

.swiper-container-ns .swiper-slide .right a:nth-child(4):hover {
    color: #d80414;
    background-color: #fff;
}

.swiper-pagination-ns {
    width: 50% !important;
    right: 0 !important;
    left: auto !important;
    bottom: 30px !important;
    display: flex;
    justify-content: flex-end;
}

.swiper-pagination-ns .swiper-pagination-bullet {
    width: 10px;
    height: 10px;
    border-radius: 0;
    background: #d80414;
}

.news-inner-main {
    margin-bottom: 60px;
}

.news-inner-main a {
    width: 100%;
    padding: 30px 0;
    display: flex;
    position: relative;
    border-bottom: 1px solid #e9e9e9;
    transition: .4s;
}

.news-inner-main a div:nth-child(3) {
    width: 13.67%;
    overflow: hidden;
}

.news-inner-main a div:nth-child(3) img {
    width: 100%;
    transition: .4s;
}

.news-inner-main a div:nth-child(2) {
    width: 78.33%;
    padding: 0 110px 0 60px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}


.news-inner-main a div:nth-child(1) {
    width: 8%;
    border: 1px solid #e9e9e9;
    text-align: center;
    display: flex;
    justify-content: center;
    flex-direction: column;
}

.news-inner-main a div:nth-child(1) p:nth-child(1) {
    font-size: 40px;
    color: #aaaaaa;
    line-height: 1.1;
    width: 100%;
}

.news-inner-main a div:nth-child(1) p:nth-child(2) {
    font-size: 16px;
    color: #aaaaaa;
    line-height: 1.1;
    width: 100%;
    margin-bottom: 0;
}

.news-inner-main a div:nth-child(2) p:nth-child(1) {
    font-size: 24px;
    color: #333333;
    margin-bottom: 25px;
    line-height: 1.1;
    display: -webkit-box;
    -webkit-line-clamp: 1;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.news-inner-main a div:nth-child(2) p:nth-child(2) {
    font-size: 14px;
    line-height: 24px;
    color: #999999;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    margin-bottom: 0;
}

.news-inner-main a:hover {
    background: #d80414;
}

.news-inner-main a:hover div p {
    color: #fff !important;
}

.news-inner-main a:after {
    content: '';
    position: absolute;
    width: 50%;
    height: 100%;
    background: rgba(0, 0, 0, 0);
    left: 0;
    top: 0;
    transform: translateX(-100%);
    display: block;
    transition: .4s;
}

.news-inner-main a:before {
    content: '';
    position: absolute;
    width: 50%;
    height: 100%;
    background: rgba(0, 0, 0, 0);
    right: 0;
    top: 0;
    transform: translateX(100%);
    display: block;
    transition: .4s;
}

.news-inner-main a:hover:after, .news-inner-main a:hover:before {
    background: #d80414;
}

.news-inner-main a:hover div img {
    transform: scale(1.1, 1.1);
}

.news-inner-show {
    background: #f7f7f7;
}

.news-inner-show .container {
    background: #fff;
    border-top: 5px solid #d80414;
    padding: 70px 80px 0;
}

.news-inner-show .container table {
    margin: 0 auto!important;
    max-width: 100%!important;
}

.news-inner-show .container table tr td {
    text-align: center;
    vertical-align: middle;
    padding: 10px!important;
}

.news-show-title {
    margin-bottom: 40px;
    text-align: center;
}

.news-show-title p:nth-child(1) {
    color: #000000;
    font-size: 28px;
    line-height: 40px;
    margin-bottom: 0;
}

.news-show-title p:nth-child(2) {
    color: #999999;
    font-size: 16px;
    line-height: 40px;
    margin-bottom: 0;
}

.show-topimg {
    display: flex;
    justify-content: space-between;
    margin-bottom: 30px;
}

.show-topimg div {
    width: calc((100% - 40px) / 2);
}

.show-topimg div img {
    width: 100% !important;
    margin-bottom: 40px;
}

.show-topimg div p {
    text-align: center;
    font-size: 16px;
    line-height: 30px;
    color: #999999;
    margin-bottom: 0;
}

.show-main0 {
    border-bottom: 1px solid #e9e9e9;
    margin-bottom: 35px;
    padding: 0 20% 45px;
    text-align: justify;
    font-size: 18px;
    color: #999999;
    line-height: 36px;
}

.show-main0 .img-div {
    display: flex;
    width: 100%;
    margin-bottom: 20px;
}
.show-main0 video{
    width: 100%;
}

.show-main0 .img-div img {
    width: calc((100% - 40px) / 3) !important;
    margin-right: 20px;
}

.show-main0 .img-div img:last-child(2) {
    margin-right: 0;
}

.next-page {
    display: flex;
    flex-direction: column;
    position: relative;
    margin-bottom: 60px;
    padding-right: 180px;
}

.next-page p {
    margin-bottom: 0;
    font-size: 16px;
    color: #999999;
    display: -webkit-box;
    -webkit-line-clamp: 1;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.next-page p:nth-child(1) {
    margin-bottom: 15px;
}

.next-page p a {
    color: #999999;
    transition: .4s;
    max-width: 50%;
}

.next-page p a:hover {
    color: #d80414;
}

.back {
    position: absolute;
    right: 0;
    top: 50%;
    width: 160px;
    height: 50px;
    line-height: 48px;
    text-align: center;
    border: 1px solid #d80414;
    background: #d80414 !important;
    color: #ffff;
    border-radius: 25px;
    transform: translateY(-50%);
}

.back:hover {
    color: #d80414;
    background: #fff !important;
    transition: .4s;
}

.show-main0 img {
    width: 100% !important;
    display: block;
    margin: 0 auto;
}
