
.index-feature-section {
    background: url("../images/bg_0.png") no-repeat center center;
    background-size: 1883px 875px;
}

.feature-title {
    display: block;
    font-size: 24px;
    font-weight: bold;
    color: #000000;
    margin: 0 auto;
    padding: 20px 0;
    text-align: center;
}

.index-feature {
    width: var(--width);
    height: 480px;
    margin: 0 auto;
    background: #ffffff;
    display: flex;
    padding: 20px;
    box-sizing: border-box;
    gap: 24px;
}

.feature-left,
.feature-right {
    width: 50%;
    display: flex;
    box-sizing: border-box;
}

.feature-left {
    align-items: flex-start;
}

.thumbs-swiper {
    width: 94px;
    height: 443px;
    overflow: hidden;
    margin: 0;
}

.thumbs-swiper .swiper-slide {
    height: 80px !important;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
}

.thumbs-swiper .swiper-slide img {
    width: 94px;
    height: 80px;
    object-fit: cover;
}

.thumbs-swiper .swiper-slide-thumb-active img {
    border: 1px solid #FD1E1E;
}

.left-main {
    position: relative;
    width: 550px;
    height: 443px;
    margin-left: 20px;
}

.left-main .swiper-wrapper,
.left-main .swiper-slide {
    width: 550px !important;
    height: 443px !important;
}

.left-main .swiper-slide {
    position: relative;
    overflow: hidden;
}

.left-main .swiper-slide img {
    width: 550px;
    height: 443px;
    object-fit: cover;
    display: block;
}

.image-mask {
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    height: 67px;
    background: rgba(0, 0, 0, 0.5);
    display: flex;
    align-items: center;
    padding: 0 16px;
}

.mask-text {
    color: #fff;
    font-size: 16px;
    display: block;
    text-decoration: none;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.feature-right {
    flex-direction: column;
}

.tab-header {
    padding: 8px 0 0;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.tab-header .tabs {
    display: flex;
    gap: 16px;
    flex: 1;               
}

.tab-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 130px;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: #ffffff;
    background-color: #FD1E1E;
    border: none;
    outline: none;
    cursor: pointer;
    font-size: 16px;
    padding: 6px 10px 3px;
    border-top-right-radius: 10px;
    border-top-left-radius: 10px;
}

.tab-btn .tab-icon {
    width: 20px;
    height: 20px;
    display: none;
}

.tab-btn.active {
    color: #FFEA00;
}

.tab-btn.active .tab-icon {
    display: inline-block;
}

.more-btn {
    display: none;
    padding: 0 12px;
    border: 1px solid #FD1E1E;
    border-radius: 999px;
    background: #ffffff;
    color: #FD1E1E;
    font-size: 14px;
    text-decoration: none;
}

.more-btn.active {
    display: inline-block;
}

.tab-divider {
    height: 3px;
    background: #FD1E1E;
    margin: 0 0 16px;
}

.tab-content {
    flex: 1;
    overflow: hidden;
}
.tab-content .tab-panel {
    display: none;
}

.tab-content .tab-panel.active {
    display: block;
}

.news-list {
    list-style: none;
    margin: 0;
    padding: 0;
}

.news-list li {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    padding: 8px 0;
    border-bottom: 1px dashed #eee;
}

.news-list li .title {
    position: relative;
    color: #333;
    text-decoration: none;
    max-width: calc(100% - 120px);
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.news-list li .title::before {
    content: "";
    display: inline-block;
    width: 4px;
    height: 4px;
    border-radius: 50%;
    background: #FD1E1E;
    margin-right: 8px;
    vertical-align: middle;
}

.news-list li .date {
    color: #777;
    min-width: 100px;
    text-align: right;
}

