.banner {
    background-image: url(../../news/banner-bg.png);
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    width: 100%;
    height: 52rem;
    position: relative
}

.banner .gray-gradient-mask1 {
    width: 50%;
    height: 100%;
    position: absolute;
    left: 0;
    top: 0;
    background: linear-gradient(270deg,#ebebeb00 .37%,#ebebeb 50.81%)
}

.banner .gray-gradient-mask2 {
    position: absolute;
    bottom: 0;
    width: 100%;
    height: 33%;
    background: linear-gradient(180deg,#f6f7f800,#f6f7f8)
}

.banner .header-content {
    display: flex;
    height: 100%;
    flex-direction: column;
    justify-content: center;
    z-index: 1;
    position: relative
}

.banner .header-content h1 {
    font-family: MiSans VF;
    font-size: 5.6rem;
    font-style: normal;
    font-weight: 630;
    margin-top: 0rem;
    margin-bottom: 0rem
}

.banner .header-content .header-description {
    color: #727687;
    color: var(--color2, #727687);
    width: 36rem;
    font-size: 1.4rem;
    font-weight: 400;
    line-height: 2.2rem
}

.banner .header-content .click-now {
    margin-top: 8px;
    display: flex;
    font-size: 14px;
    width: 240px;
    height: 44px;
    overflow: hidden;
    padding: 10px 16px;
    justify-content: space-between;
    align-items: center;
    border-radius: 4px;
    background: linear-gradient(90deg,#3062f6,#6c66f5);
    background: var(--, linear-gradient(90deg, #3062f6 0%, #6c66f5 100%))
}

.banner .header-content .click-now svg {
    width: 12px;
    height: 12px;
    color: #fff
}

.tabs-nav {
    margin: auto;
    width: -moz-fit-content;
    width: fit-content;
    display: flex;
    padding: 1rem;
    align-items: center;
    gap: 2.4rem;
    border-radius: 3rem;
    background: #fff;
    -webkit-backdrop-filter: blur(2px);
    backdrop-filter: blur(2px);
    font-size: 1.6rem
}

.tabs-nav .tab-item {
    width: -moz-fit-content;
    width: fit-content;
    display: flex;
    cursor: pointer;
    height: 3.6rem;
    padding: 0rem 2.4rem;
    justify-content: center;
    align-items: center
}

.tabs-nav .tab-item.active {
    color: #fff;
    border-radius: 2rem;
    background: linear-gradient(90deg,#3062f6,#6c66f5);
    background: var(--, linear-gradient(90deg, #3062f6 0%, #6c66f5 100%))
}

.news-list {
    padding-bottom: 8rem;
    margin-top: 4.6rem;
    display: grid;
    grid-column-gap: 2rem;
    -moz-column-gap: 2rem;
    column-gap: 2rem;
    grid-row-gap: 4.8rem;
    row-gap: 4.8rem
}

.news-card-style {
    width: 100%;
    border-radius: 16px;
    overflow: hidden;
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center
}

.news-card-style .category {
    position: absolute;
    top: 0;
    left: 0;
    color: #fff;
    font-size: 1.6rem;
    z-index: 2
}

.news-card-style .category span {
    position: absolute;
    left: 1.1rem;
    top: .5rem;
    white-space: nowrap
}

.news-card-style .category img {
    position: absolute;
    top: 0;
    left: 0;
    width: 10.8rem;
    height: 3.2rem;
    flex-shrink: 0
}

.news-card-style .fixed-ratio-img {
    width: 100%;
    aspect-ratio: 23/12;
    overflow: hidden
}

.news-card-style .fixed-ratio-img img {
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
    object-fit: cover
}

.news-card-style .content {
    padding: 1.6rem 1.6rem 2.4rem;
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: 1rem;
    flex: 1;
    background-color: #fff
}

.news-card-style .content .title {
    color: #1c213e;
    font-size: 1.6rem;
    font-weight: 500;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
    line-clamp: 2;
    overflow: hidden;
    text-overflow: ellipsis;
    cursor: pointer
}

.news-card-style .content .title:hover {
    color: #3062f6
}

.news-card-style .content .abstract {
    display: none
}

.news-card-style .content .date {
    margin-top: auto;
    color: #727687;
    font-size: 1.2rem;
    font-weight: 400
}

.big-card-style {
    width: 100%;
    border-radius: 16px;
    overflow: hidden;
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    grid-row-start: 1;
    grid-row-end: 3;
    grid-column-start: 1;
    grid-column-end: 3
}

.big-card-style .category {
    position: absolute;
    top: 0;
    left: 0;
    color: #fff;
    font-size: 1.6rem;
    z-index: 2
}

.big-card-style .category span {
    position: absolute;
    left: 1.1rem;
    top: .5rem;
    white-space: nowrap
}

.big-card-style .category svg {
    position: absolute;
    top: 0;
    left: 0;
    width: 10.8rem;
    height: 3.2rem;
    flex-shrink: 0
}

.big-card-style .fixed-ratio-img {
    width: 100%;
    aspect-ratio: 71/44;
    overflow: hidden
}

.big-card-style .fixed-ratio-img img {
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
    object-fit: cover;
    display: flex
}

.big-card-style .content {
    flex: 1;
    padding: 1.6rem 1.6rem 2.4rem;
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: 1rem;
    background-color: #fff
}

.big-card-style .content .title {
    text-align: justify;
    color: #1c213e;
    font-size: 2rem;
    font-style: normal;
    font-weight: 500;
    cursor: pointer
}

.big-card-style .content .title:hover {
    color: #3062f6
}

.big-card-style .content .abstract {
    color: #1c213e;
    font-size: 1.4rem;
    font-weight: 400;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 3;
    line-clamp: 3;
    overflow: hidden;
    text-overflow: ellipsis
}

.big-card-style .content .date {
    margin-top: auto;
    color: #727687;
    font-size: 1.2rem;
    font-weight: 400
}
