﻿.bannerTabContainer {
    width: 1140px;
    height: 80px;
    position: relative;
    top: -130px;
    margin-left: auto;
    margin-right: auto;
}

.bannerTabContainer > .container {
    box-shadow: 0px 10px 60px 0px rgba(0, 0, 0, 0.1);
    display: flex;
}

.bannerTabContainer > .container > .bannerTab {
    width: 33.33%;
    height: 160px;
    display: inline-block;
    box-sizing: border-box;
    padding: 40px 45px;
    color: white;
}

.bannerTabContainer > .container > .bannerTab.banner1 {
    background-color: white;
    color: var(--textNormalColor);
}

.bannerTabContainer > .container > .bannerTab.banner2 {
    background: linear-gradient(-29deg, #FE582B, #FF9E6E);
}

.bannerTabContainer > .container > .bannerTab.banner3 {
    background: linear-gradient(-29deg, #011F1F, #033637);
}

.bannerTabContainer > .container > .bannerTab > .title {
    font-size: 18px;
    font-weight: bold;
    margin-bottom: 10px;
}

.bannerTabContainer > .container > .bannerTab > .desc {
    font-size: 14px;
    line-height: 24px;
}


.newsInfoArea {
    display: flex;
}

.newsInfoArea > .col {
}

.newsItemContainer {
    box-sizing: border-box;
    padding: 55px 120px 35px 120px;
    border: 1px solid transparent;
    cursor: pointer;
}

.newsItemContainer:hover {
    border: 1px solid #19C2C4;
    background: linear-gradient(-29deg, rgb(206,249,238), rgb(249,254,248));
}

.newsItemContainer >.newItem {
    position: relative;
    margin-bottom: 20px;
    padding-left: 80px;
    padding-bottom: 20px;
    box-sizing: border-box;
}

.newsItemContainer >.newItem:after {
    content: ' ';
    width: 80px;
    height: 2px;
    background-color: #19C2C4;
    position: absolute;
    left: 80px;
    bottom: 0px;
}

.newsItemContainer >.newItem >.date {
    position: absolute;
    left: 0px;
    top: -23px;
}

.newsItemContainer >.newItem >.title {
    font-size: 24px;
    margin-bottom: 20px;
}

.newsItemContainer >.newItem >.desc {
    font-size: 14px;
    font-weight: normal;
    color: var(--textGrayColor);
    line-height: 25px;
}


.newsTable {
}

.newsTable > .item {
    height: 60px;
    line-height: 60px;
    border-top: 1px solid #E3EFEB;
}

.newsTable > .item:last-child {
    border-bottom: 1px solid #E3EFEB;
}

.newsTable > .item >.title {
    font-size: 14px;
    color: var(--textNormalColor);
}

.newsTable > .item >.date {
    font-size: 14px;
    color: var(--textGrayColor);
    float: right;
    line-height: 60px;
}


.paper {
    height: 50px;
    line-height: 50px;
    text-align: right;
    margin-top: 20px;
}

.paper > .btn {
    width: 24px;
    height: 24px;
    display: inline-block;
    cursor: pointer;
    border-radius: 12px;
    background-color: #19C2C4;
    margin: 0px 10px;
    position: relative;
}

.paper > .btn > img {
    position: absolute;
    left: 6px;
    top: 6px;
}

.paper > .dot {
    width: 16px;
    height: 24px;
    display: inline-block;
    cursor: pointer;
    position: relative;
}

.paper > .dot:before {
    content: ' ';
    width: 12px;
    height: 12px;
    background-color: #95CAC6;
    position: absolute;
    left: 2px;
    top: 6px;
}

.paper > .dot.active:before, .paper > .dot:hover:before {
    background-color: #19C2C4;
}

.mainBanner {
    position: relative;
}

.mainBanner.banner2:before {
    content: ' ';
    width: 100%;
    height: 100%;
    left: 0px;
    top: 0px;
    background-image: url(/images/news-banner.png);
    background-position: center;
    background-repeat: no-repeat;
    position: absolute;
}

.mainBanner > .grid {
    width: 100%;
    height: 100%;
    left: 0px;
    top: 0px;
    background-image: url(/images/grid-back5.png);
    background-position: center;
    position: absolute;
    z-index: 2;
    opacity: 0.4;
}