/* main */
.main {
    position: relative;
    padding-top: 80px;
    background-color: #ffffff;
}
.main::after {    
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    display: block;
    content: '';
    width: 100%;
    max-width: 1920px;
    height: 260px;
    margin: 0 auto;
    background-image: url(../images/softbg.jpg);
    background-size: 100%;
    background-position: left bottom;
}
.main-wrap {
    padding-bottom: 52px;
}
.main-wrap.banner {
    height: 400px;
    background-color: #e6f5e2;
}
.main-wrap.banner .main-wrap-box  {
    position: relative;
}
.main-wrap.banner .system-con {
    position: absolute;
    top: 0;
    left: 0;
}
.main-wrap-box {
    margin: 0 auto;
    width: 100%;
    max-width: 1280px;
}
.main-wrap-tit {
    position: relative;
    z-index: 1;
    flex: 0 0 700px;
    padding: 0 0 30px 0;
    font-size: 46px;
    text-align: center;
}
.top-pic .main-wrap-tit {
    position: relative;
    z-index: 2;
    margin: 0 auto;
    width: 1280px;
    padding-left: 70px;
    text-align: left;
}
.main-wrap-tit-ch {
    font-weight: bold;
    color: var(--black-bd);
}
.main-wrap-tit-en {
    font-size: 28px;
    font-weight: bold;
    color: var(--white-op6);
}
.flex-r {
    display: flex;
}
.news-tabs {
    position: sticky;
    top: 80px;
    z-index: 99;
    margin: 0 auto 40px;
    justify-content: center;
    gap: 10px;
    background-color: var(--white-op9);
    border-bottom: 1px solid #eff2fd;
}
.news-tab {
    flex: 0 0 140px;
    height: 60px;
    /* font-size: 22px; */
    line-height: 60px;
    text-align: center;
    color: #666666;
    box-sizing: border-box;
    transition: all 0.2s ease-in-out;
    cursor: pointer;
}
.news-tab:hover {
    transform: translateY(-3px);
}
.news-tab.minheight {
    /* font-size: 17px; */
    height: 40px;
    line-height: 40px;
}
.news-tab.active {
    position: relative;
    color: #2A5ED8;
    font-weight: bold;
}
.news-tab.active::after {
    display: block;
    content: '';
    position: absolute;
    left: 20%;
    bottom: 0;
    width: 60%;
    height: 2px;
    background-color: rgba(42, 94, 216, 0.9);
}

/* news-con */
.news-con {
    padding: 30px;
    display: flex;
    flex-direction: column;
    justify-content: center;

}
.news-con-l {
    width: 100%;
    margin-right: 10px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}
.news-l-box {
    padding: 30px 0;
    display: flex;
    cursor: pointer;
    overflow: hidden;
    transition: all 0.3s ease;
    border-bottom: 1px solid #eff2fd;
}
.news-img {
    flex: 0 0 266px;
    width: 266px;
    height: 166px;
    border-radius: 10px;
    overflow: hidden;
}
.news-img img {
    width: 100%;
    height: 100%;
    filter: hue-rotate(-10deg);
    object-fit: cover;
    transition: all 0.3s ease;
}
.news-l-box:hover {
    box-shadow: none;
}
.news-l-box:hover .news-img img {
    filter: hue-rotate(0deg);
    transform: scale(1.1);
}
.news-infos {
    padding: 13px 38px;
}
.news-tit {
    font-size: 22px;
    line-height: 28px;
    font-weight: bold;
    padding: 11px 0 20px;
}
.news-des, .news-time {
    font-size: 16px;
    line-height: 26px;
    color: var(--black-6);
}
.news-des {
    margin-bottom: 10px;
    height: 52px;
}

.news-con-r {
    flex: 1;
    padding: 10px;
    border-radius: 10px;
}
.news-l-li {
    margin: 10px 0;
    padding: 30px;
    cursor: pointer;
}
.news-l-box:hover .news-tit {
    /* color: var(--primary-blue); */
    color: #2A5ED8;
}