a {
    color: inherit;
}

a:hover {
    color: inherit;
}

.top-nav-bar {
    display: flex;
    align-items: center;
    padding-left: 30px;
    background-color: #0A2D72;
    color: #fff;
}

.top-nav-bar span {
    position: relative;
    padding: 15px 0;
    margin: 0 30px;
    font-size: 16px;
    font-weight: bold;
    cursor: pointer;
    transition: all .5s;
}

.top-nav-bar span::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 2px;
    background-color: #96F0A4;
    opacity: 0;
    transition: all .5s;
}

.top-nav-bar span:hover {
    color: #96F0A4;
}

.top-nav-bar span:hover::after {
    opacity: 1;
}

.top-nav-bar span.active {
    color: #96F0A4;
}

.top-nav-bar span.active::after {
    opacity: 1;
}

.blog-page .main-container {
    padding: 120px 10%;
    padding-bottom: 90px;
    background-color: #F3F4F8;
}

.blog-page .new-top {
    width: 100%;
    height: max(350px, calc((100vw / 1920) * 420));
    margin-bottom: 80px;
    background-color: #fff;
    border-radius: 6px;
    overflow: hidden;
}

.blog-page .new-top a {
    display: flex;
    height: 100%;
}

.blog-page .new-top .left {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    width: 50%;
    padding: calc((100vw / 1920) * 40);
}

.blog-page .new-top .left .title {
    font-size: 26px;
    line-height: 1.5;
}

.blog-page .new-top .left .text {
    margin-top: 10px;
    font-size: 14px;
    line-height: 1.5;
}

.blog-page .new-top .left .bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 10px;
}

.blog-page .new-top .left .bottom .learn-btn {
    display: flex;
    align-items: center;
}

.blog-page .new-top .left .bottom .learn-btn img {
    height: 30px;
    margin-left: 10px;
}

.blog-page .new-top .left .bottom .learn-btn p {
    font-size: 14px;
}

.blog-page .new-top .left .bottom .time {
    font-size: 14px;
}

.blog-page .new-top .left .bottom .time span {
    position: relative;
    padding: 0 10px;
}

.blog-page .new-top .left .bottom .time span:not(:first-child)::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    height: 100%;
    width: 1px;
    background-color: rgba(0, 0, 0, .2);
}

.blog-page .new-top .image {
    width: 50%;
    overflow: hidden;
}

.blog-page .new-top .image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: all .5s;
}

.blog-page .new-top:hover .left .title {
    color: #92F0A1;
}

.blog-page .new-top:hover .image img {
    transform: scale(1.1);
}

.blog-page .condition {
    display: flex;
    justify-content: flex-end;
    /* margin-top: 80px; */
    margin-bottom: 40px;
}

.blog-page .condition .year-select {
    position: relative;
    width: 230px;
    height: auto;
    border: 1px solid #0A2D72;
    border-radius: 6px;
    cursor: pointer;
}

.blog-page .condition .year-select .selected {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 8px 20px;
}

.blog-page .condition .year-select .selected span {
    font-size: 16px;
    color: #0A2D72;
}


.blog-page .condition .year-select ul {
    display: none;
    position: absolute;
    bottom: 0;
    transform: translateY(100%);
    z-index: 3;
    width: 100%;
    padding-left: 0;
    margin-bottom: 0;
    border: 1px solid #0A2D72;
    border-radius: 6px;
    overflow: hidden;
}

.blog-page .condition .year-select ul li {
    width: 100%;
    padding: 5px 0;
    padding-left: 20px;
    border-bottom: 1px solid #cccccc;
    background-color: #fff;
    transition: all .5s;
}

.blog-page .condition .year-select ul li:hover {
    background-color: #92F0A1;
    color: #fff;
}

.blog-page .condition .year-select ul li:last-child {
    border: none;
}

.blog-page .new-list {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.blog-page .new-list .item {
    /* min-height: max(250px, calc((100vw / 1920) * 520)); */
    min-height: max(180px, calc((100vw / 1920) * 420));
    border-radius: 10px;
    overflow: hidden;
}

.blog-page .new-list .item a {
    display: flex;
    flex-direction: column;
    height: 100%;
    background-color: #fff;
}

.blog-page .new-list .item a:hover {
    background-color: #92F0A1;
}

.blog-page .new-list .item .pic {
    width: 100%;
    height: max(150px, calc((100vw / 1920) * 260));
    overflow: hidden;
}

.blog-page .new-list .item .pic img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: all .5s;
}

.blog-page .new-list .item a:hover .pic img {
    transform: scale(1.1);
}

.blog-page.live-page .new-list .item .pic {
    height: max(150px, calc((100vw / 1920) * 270));
}

.blog-page .new-list .item .text-content {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    width: 100%;
    padding: max(20px, calc(100vw / 1920 * 30));
}

.blog-page .new-list .item .text-content .title {
    font-size: 16px;
    line-height: 1.4;
    font-weight: 500;
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 5;
}

.blog-page .new-list .item .text-content .other-message {
    font-size: 12px;
    margin-top: 10px;
}

.blog-page .new-list .item .text-content .other-message span {
    position: relative;
    padding: 0 10px;
}

.blog-page .new-list .item .text-content .other-message span:first-child {
    padding-left: 0;
}

.blog-page .new-list .item .text-content .other-message span:not(:first-child)::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    height: 100%;
    width: 1px;
    background-color: rgba(0, 0, 0, .2);
}

.blog-page .load-more {
    text-align: center;
}

.blog-page .load-more-btn {
    display: inline-flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
    margin-top: 70px;
    cursor: pointer;
}

.blog-page.live-page .new-list .item {
    min-height: max(200px, calc((100vw / 1920) * 450));
}

.live-page .new-list .item .description {
    margin-top: 25px;
    margin-bottom: 20px;
}

.live-page .new-list .item .description p {
    font-size: 12px;
}

.live-page .new-list .item .more-btn {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    margin-top: auto;
}

.live-page .new-list .item .more-btn p {
    font-size: 14px;
}

.live-page .new-list .item .more-btn img {
    width: 20px;
    margin-left: 10px;
    display: block;
}