﻿.mainBanner.banner1 {
    background-color: #1D3939;
    position: relative;
    z-index: 1;
}

.mainBanner.banner1:before {
    content: ' ';
    width: 100%;
    height: 100%;
    left: 0px;
    top: 0px;
    background-image: url(/images/mainbanner-back.png);
    background-position: center;
    background-repeat: no-repeat;
    position: absolute;
}

.mainBanner.banner2 {
    position: relative;
    z-index: 1;
}

.mainBanner.banner2:before {
    content: ' ';
    width: 100%;
    height: 100%;
    left: 0px;
    top: 0px;
    background-image: url(/images/mainbanner-back2.jpg);
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    position: absolute;
}

.hideBanner {
    opacity: 0.8;
    transition: 0.5s all ease;
}
.showBanner {
    opacity: 1;
    transition: 0.3s all ease;
}

.bannerTabContainer {
    width: 1140px;
    height: 80px;
    position: relative;
    top: -180px;
    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);
    position: relative;
    z-index: 1;
}

.bannerTabContainer > .container > .bannerTab.banner1:before {
    content: ' ';
    width: 191px;
    height: 160px;
    background-image: url(/images/mainbanner-tag1.png);
    position: absolute;
    right: 0px;
    top: 0px;
}

.bannerTabContainer > .container > .bannerTab.banner2 {
    background: linear-gradient(-29deg, #FE582B, #FF9E6E);
    position: relative;
    z-index: 1;
}

.bannerTabContainer > .container > .bannerTab.banner2:before {
    content: ' ';
    width: 191px;
    height: 160px;
    background-image: url(/images/mainbanner-tag2.png);
    position: absolute;
    right: 0px;
    top: 0px;
}

.bannerTabContainer > .container > .bannerTab.banner3 {
    background: linear-gradient(-29deg, #011F1F, #033637);
    position: relative;
    z-index: 1;
}

.bannerTabContainer > .container > .bannerTab.banner3:before {
    content: ' ';
    width: 191px;
    height: 160px;
    background-image: url(/images/mainbanner-tag3.png);
    position: absolute;
    right: 0px;
    top: 0px;
}

.bannerTabContainer > .container > .bannerTab > .content {
    position: absolute;
    right: 0px;
    left: 0px;
    bottom: 0px;
    top: 0px;
    padding: 40px 45px;
}

.bannerTabContainer > .container > .bannerTab > .content > .title {
    font-size: 18px;
    font-weight: bold;
    margin-bottom: 10px;
}

.bannerTabContainer > .container > .bannerTab > .content > .desc {
    font-size: 14px;
    line-height: 24px;
}


.newsInfoArea {
    display: flex;
}

.newsInfoArea > .col {
}


.newItem {
    position: relative;
    margin-bottom: 20px;
    padding-left: 80px;
    padding-bottom: 20px;
    box-sizing: border-box;
}

.newItem:after {
    content: ' ';
    width: 80px;
    height: 2px;
    background-color: #19C2C4;
    position: absolute;
    left: 80px;
    bottom: 0px;
}

.newItem >.date {
    position: absolute;
    left: 0px;
    top: -23px;
}

.newItem >.title {
    font-size: 24px;
    margin-bottom: 20px;
}

.newItem >.desc {
    font-size: 14px;
    font-weight: normal;
    color: var(--textGrayColor);
    line-height: 25px;
}

.productContainer {
    display: flex;
}
.productContainer > .productItem {
    display: block;
    flex: 1;
    margin: 0px 30px 30px 0px;
    box-sizing: border-box;
    position: relative;
    border: 1px solid var(--grayBorder);
    font-size: 14px;
    z-index: 0;
    transition: 0.3s all ease;
    cursor: pointer;
    background-color: white;
}

.productContainer:last-of-type > .productItem {
    margin-bottom: 0px;
}

.productContainer > .productItem:last-child {
    margin-right: 0px;
}

.productContainer > .productItem > .title {
    height: 100px;
    color: black;
    padding: 25px 30px;
    box-sizing: border-box;
    position: relative;
    z-index: 1;
}

.productContainer > .productItem > .title:after {
    content: '';
    /*background-image: url(/images/product_title.webp);
    background-repeat: no-repeat;
    background-position: right;*/
    position: absolute;
    right: 0px;
    top: 0px;
    width: 100px;
    height: 100px;
}

.productContainer > .productItem > .title > .text {
    font-size: 18px;
    font-weight: bold;
    line-height: 25px;
}

.productContainer > .productItem > .title > img {
    position: absolute;
    right: 0px;
    top: 0px;
    height: 120%;
}

.productContainer > .productItem > .title.sd:after {
    background-image: url(/images/SD-icon.png);
    position: absolute;
    right: 10px;
    top: 0px;
    width: 100px;
    height: 100px;
}

.productContainer > .productItem > .content {
    color: rgb(100, 100, 100);
    box-sizing: border-box;
    padding: 0px 30px 25px 30px;
}

.productContainer > .productItem > .content >.desc {
    line-height: 20px;
    margin-bottom: 10px;
}

.productContainer > .productItem > .content >.pointContainer {
    display: flex;
}

.productContainer > .productItem > .content >.pointContainer > ul {
    flex-grow: 1;
    padding-left: 20px;
}

.productContainer > .productItem > .content >.pointContainer > ul > li {
    line-height: 25px;
}

.productContainer > .productItem > .more {
    width: 0px;
    height: 35px;
    line-height: 35px;
    color: white;
    background: linear-gradient(-29deg, #FF9E6E, #FE582B);
    text-align: center;
    position: absolute;
    right: -5px;
    bottom: -5px;
    transition: 0.5s all ease;
    overflow: hidden;
}

.productContainer > .productItem > .more::after {
    content: ' ';
    display: inline-block;
    width: 50px;
    height: 16px;
    /*background: url(/images/moreIcon.png);*/
}

.productContainer > .productItem:hover {
    box-shadow: 0px 6px 12px 0px rgba(17, 193, 167, 0.25);
}

.productContainer > .productItem:hover > .more {
    width: 145px;
}

.productContainer > .productItem:hover > .content >.desc {
    color: var(--textNormalColor);
}


.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;
}