.nav_other {
    background: #1F1F24 !important;
}

.index_main {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: 100%;
    padding-bottom: 80px;
}

.index_header {
    position: sticky;
    top: 64px;
    z-index: 11;
    background: #1C1D1F;
    width: 100%;
    margin: unset !important;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    border-bottom: 1px solid #3F414B;

}

.index_title {
    width: 100%;
    display: flex;
    padding: 20px 0;
}

.title-test-btn1 {
    font-family: "Inter Regular";
    font-size: 16px;
    line-height: 100%;
    letter-spacing: 0em;
    font-feature-settings: "kern" on;
    color: #FFDB9E;
    z-index: 1;
    cursor: pointer;
    -webkit-font-smoothing: antialiased;
    width: auto;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.title-test-btn2:hover,
.title-test-btn2:focus,
.title-test-btn2:active {
    color: #FFDB9E !important;
}

.title-test-btn2 {
    font-family: "Inter Regular";
    font-size: 16px;
    font-weight: normal;
    line-height: 100%;
    letter-spacing: 0em;
    font-feature-settings: "kern" on;
    color: #FFFFFF;
    z-index: 1;
    cursor: pointer;
    -webkit-font-smoothing: antialiased;
    width: auto;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}


.index_title a:hover {
    color: #FFDB9E;
}

.index_discounts {
    position: relative;
    left: 0px;
    width: 100%;
    height: auto;
    border-radius: 6px;
    opacity: 1;
    text-align: center;
    display: flex;
    margin: 30px 0;
}

.index_discounts .index_discounts_left {

    flex: 1;
    max-width: 260px;

}

.index_discounts .index_discounts_left .left_area {
    position: sticky;
    top: 160px;
    z-index: 10;
    display: flex;
    flex-direction: column;
    gap: 10px;
    border-radius: 12px;
    background: linear-gradient(344deg, rgba(46, 47, 54, 0.2) 0%, #2E2F36 96%);
    padding: 20px 0px;
    height: 100%;
    max-height: calc(100vh - 150px);
    overflow: auto;
}

.index_discounts .index_discounts_left .left_area::-webkit-scrollbar {
    display: none;
}

.index_discounts .index_discounts_left .left_area>div {
    width: 100%;
    white-space: nowrap;
    padding: 24px 20px 24px 40px;

    font-family: "Inter Regular";
    font-size: 16px;
    font-weight: normal;
    line-height: 100%;
    letter-spacing: 0em;
    font-feature-settings: "kern" on;
    color: #80879A;
    z-index: 0;
    cursor: pointer;
    text-align: left;
}

.index_discounts .index_discounts_left .left_area>div.active,
.index_discounts .index_discounts_left .left_area>div:hover {
    position: relative;
    color: #FFDB9E;
}

.index_discounts .index_discounts_left .left_area>div.active::after {
    content: '';
    position: absolute;
    top: 50%;
    right: 0;
    transform: translateY(-50%);
    width: 5px;
    height: 32px;
    border-radius: 4px 0px 0px 4px;
    background: linear-gradient(270deg, #F5BA47 0%, #FFEABA 100%);
}

.index_discounts .index_discounts_right {
    flex: 1;
    padding: 0 30px 30px 30px;
    width: 50%;
}

.article-list-item {
    padding: 30px 0px 35px 0px;
    border-width: 0px 0px 1px 0px;
    border-style: solid;
    border-color: #3F414B;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.article-list-item:hover {
    border-color: #FFDB9E;
    cursor: pointer;
}

.article-list-item:hover .icon-title {
    color: #FFDB9E;
}

.icon-title {
    font-family: "Inter Regular";
    font-size: 18px;
    font-weight: 500;
    line-height: 140%;
    letter-spacing: 0em;
    color: #FFFFFF;
    text-align: left;
    font-weight: bold;
    -webkit-font-smoothing: antialiased;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.article-item {
    display: flex;
    justify-content: space-between;
}

.icon-content {
    font-family: "Inter Regular";
    font-size: 16px;
    font-weight: normal;
    letter-spacing: 0em;
    font-feature-settings: "kern" on;
    color: #80879A;
    -webkit-font-smoothing: antialiased;
    /* width: 80%; */
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
    max-width: 1000px;
}

.no_text_tips {
   
    font-family: "Inter Regular";
    font-size: 14px;
    font-weight: normal;
    line-height: 100%;
    letter-spacing: 0em;
    font-feature-settings: "kern" on;
    color: #80879A;

    margin: 20px 0;
    display: none;
}

@media only screen and (max-width: 767px) {

    .index_discounts .index_discounts_left {
        display: none;
    }

    .index_discounts .index_discounts_right {
        border: 1px solid #3F414B;
        border-radius: 12px;
        padding: 0 10px;
    }

    .index_discounts_right .index_discounts_list .article-content {
        display: none;
    }

    .article-list-item {
        padding: 24px 0px;
    }

    .icon-title {
        font-weight: 500;
    }

    .no_text_tips{
        display: block;
    }

    .icon-title {
        white-space: normal;
        overflow: unset;
        text-overflow: unset;
    }

}