.index_best {
    padding: 10px;
    max-width: 1600px;
    background-color: #fff;
    width: 100%
}

.index_best .main_tab {
    padding: 0;
}

.index_best h3 {
    text-align: center;
    font-weight: 500;
    font-size: var(--h5-font-size);
    padding: 10px 0
}

.index_best .options {
    display: grid;
    grid-template-columns: 1fr 86px;
    flex-wrap: wrap;
    max-height: var(--maxHeight);
    overflow-y: hidden
}

.index_best .options > a {
    height: 36px;
    background: var(--primary-color-1);
    border-radius: 4px;
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center
}

.index_best .options > a:hover:not([disabled]) {
    background: var(--button-background-hover)
}

.index_best .options.extendTags {
    max-height: unset;
    margin-bottom: 20px
}

.index_best .tabs {
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: center;
    text-align: center;
    width: 100%;
    margin: 1rem 0;
}

.index_best .tabs .childTab {
    display: flex;
    flex-wrap: wrap;
    overflow-y: hidden;
    justify-content: center;
}

.index_best .tabs .childTab button {
    padding: .2rem .9rem;
    border: 0;
    border-radius: .3rem .3rem 0 0;
    border-bottom: 1px solid var(--border-color);
    color: #000;
    background: 0;
    text-wrap: nowrap
}

.index_best .tabs .childTab button.active {
    border: 1px solid var(--border-color);
    border-bottom: 0
}

.index_best .tabs .childTab button.active h4 {
    font-weight: 700
}

.index_best .tabs .childTab button h4 {
    font-weight: 400;
    font-size: 16px;
    white-space: nowrap;
    color: var(--primary-color-1)
}

.index_best .tabs .childTab button h4:hover {
    color: var(--button-background-hover);
}

.index_best .extend {
    width: 100%;
    height: 20px;
    display: none;
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translate(-50%);
    border-bottom: 2px solid var(--primary-color-1);
    justify-content: center;
    background-image: linear-gradient(to bottom, #0000, #fff)
}

.index_best .extend button {
    position: absolute;
    bottom: 0;
    transform: translateY(50%);
    background-color: #fff;
    color: var(--primary-color-1);
    width: 6rem;
    display: flex;
    justify-content: center;
    align-items: center;
    border: 2px solid var(--primary-color-1);
    border-radius: 20px;
    font-size: 14px;
    line-height: 18px
}

.index_best .extend.show {
    display: flex
}

.index_best .extend svg {
    margin-bottom: -3px;
    color: var(--primary-color-1);
    width: 18px;
    height: 18px;
    transform: translateY(2px) rotate(-90deg)
}

.index_best .extend.extendTags svg {
    transform: translateY(2px) rotate(90deg)
}

@media (min-width: 768px) {
    .index_best {
        padding: 30px;
    }

    .index_best h3 {
        font-size: var(--h3-font-size);
        font-weight: 700;
        text-align: center
    }

    .index_best .tabs .childTab {
        justify-content: unset;
    }

    .index_best .tabs .childTab button {
        padding: .5rem .9rem
    }

    .index_best .tabs .childTab button h4 {
        font-size: 20px;
        font-weight: 500
    }
}

@media (max-width: 1000px) {
    .index_best .options {
        display: unset
    }

    .index_best .options > a {
        width: 86px;
        margin: 4px 24px 4px auto
    }

    .index_best .options.show > a {
        margin: 4px auto
    }
}

.index_product .list {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 5px
}

@media (min-width: 600px) {
    .index_product .list {
        grid-template-columns:repeat(3, 1fr)
    }
}

@media (min-width: 790px) {
    .index_product .list {
        gap: 10px;
        grid-template-columns:repeat(4, 1fr)
    }
}

@media (min-width: 1200px) {
    .index_product .list {
        gap: 15px;
        grid-template-columns:repeat(6, 1fr)
    }
}

.index_product .more {
    display: flex;
    justify-content: center;
    margin-top: 15px;
}

.index_product .more a {
    background: var(--primary-color-1);
    border-radius: 4px;
    padding: .5rem 1rem;
    color: #fff
}

.index_product .more a:hover {
    background: var(--primary-color-2)
}

.index_package {
    display: grid;
    gap: 15px;
    width: 100%;
    max-width: 1600px;
    background: #fff;
    padding: 15px 0;
    margin: 0 auto
}

@media (min-width: 768px) {
    .index_package {
        padding: 30px
    }
}

.index_package .more {
    display: flex;
    justify-content: center;
    margin-top: 15px;
}

.index_package .more a {
    background: var(--primary-color-1);
    color: #fff;
    border-radius: 4px;
    width: fit-content;
    padding: .5rem 1rem
}

.index_package .more a:hover {
    background: var(--button-background-hover);
}

.index_package .main_tab {
    padding: 0 10px;
}

.index_package .packages_list {
    padding: 0;
}

@media (min-width: 768px) {
    .index_package .main_tab {
        padding: 0;
    }

    .index_package .packages_list {
        padding: 0;
    }
}

.index_category {
    padding: 10px;
    max-width: 1600px;
    background-color: #fff;
    width: 100%;
}
.index_category .top_box{
    display: flex;
    flex-flow: column;
    gap: 5px;
}
.index_category .top_box .info{
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.index_category .top_box .more{
}

.index_category .top_box .more a{
    background: var(--primary-color-1);
    color: #fff;
    border-radius: 4px;
    padding: .5rem 1rem;
}

.index_category .top_box .cat{
    width: 100%;
    overflow: hidden;
}

.index_category .top_box .cat .swiper-slide{
    width: 80px;
    margin-right: 15px;
}

.index_category .top_box .cat .item{
    width: 100%;
    text-align: center;
}
.index_category .top_box .cat .item dt{
    display: flex;
    justify-content: center;
    align-items: center;
}
.index_category .top_box .cat .item dt img{
    max-width: 100%;
    padding: 5px;
}
.index_category .top_box .cat .item dt img.on{
    display: none;
}
.index_category .top_box .cat .item dd{
    margin-top: 5px;
    font-size: 12px;
}
.index_category .top_box .cat .item.cur dt img{
    background: var(--primary-color-1);
    border-radius: 4px;
}
.index_category .top_box .cat .item.cur dt img.off{
    display: none;
}
.index_category .top_box .cat .item.cur dt img.on{
    display: block;
}
.index_category .top_box .cat .item.cur dd, .index_category .top_box .cat .item:hover dd{
    color: var(--primary-color-1);
}
.index_category .top_box .cat .item:hover dt img{
    transform: scale(0.98);
}
.index_category .content_box{
    margin-top: 5px;
    overflow: hidden;
}

@media (min-width: 768px) {
    .index_category {
        padding: 30px;
    }
    .index_category .top_box{
        flex-flow: row;
        gap: 30px;
    }
    .index_category .top_box .info{
        flex-flow: column;
        align-items: unset;
        justify-content: unset;
    }
    .index_category .top_box .info .more{
        width: 100%;
        display: flex;
        justify-content: center;
        align-items: center;
        margin-top: 15px;
    }
    .index_category .top_box .info .more a{
    }
    .index_category .top_box .cat{
        flex: 1;
    }

    .index_category .top_box .cat .swiper-slide{
        width: 120px;
    }
    .index_category .top_box .cat .item dt{
        padding: 0 15px;
    }

    .index_category .top_box .cat .item dd{
        font-size: 16px;
    }
    .index_category .top_box .cat .item dd{
        margin-top: 10px;
    }
    .index_category .content_box{
        margin-top: 15px;
    }
}


.index_latest {
    width: 100%;
    max-width: 1600px;
    background: #fff;
    padding: 10px
}

.index_latest .more {
    margin-top: 1rem;
    text-align: center
}

.index_latest .more a {
    display: inline-block;
}

.index_latest h3 {
    margin-bottom: var(--padding);
    font-size: var(--h5-font-size);
    font-weight: 500;
    text-align: center
}

.index_latest .events {
    display: flex;
    gap: 15px;
    overflow-x: auto
}

.index_latest .events .item {
    display: grid;
    grid-template-rows: auto 1fr;
    width: 33%;
    min-width: 240px;
    max-width: 466.67px
}

.index_latest .events .item .image {
    width: 100%;
    position: relative;
    z-index: 1;
}

.index_latest .events .item .image img {
    width: 100%;
    -o-object-fit: cover;
    object-fit: cover;
    aspect-ratio: 466.67/275;
    background: var(--black-300);
}

.index_latest .events .item .image .info {
    width: 100%;
    position: absolute;
    z-index: 0;
    left: 0;
    top: 0;
    font-size: 12px;
}

.index_latest .events .item .image .info dl.time {
    background: rgba(255, 255, 255, 0.6);
    border-radius: 0 0 5px 0;
    float: left;
    padding: 5px;
    display: flex;
    align-items: center;
    gap: 5px;
}

.index_latest .events .item .image .info dl.time dd {
    background: var(--primary-color-1);
    color: #ffffff;
    font-size: 12px;
    padding: 2px 5px;
    border-radius: 5px;
}

.index_latest .events .item .image .info .date {
    background: rgba(255, 255, 255, 0.6);
    border-radius: 0 5px 5px 0;
    float: left;
    padding: 5px;
    display: flex;
    align-items: center;
    font-size: 10px;
    letter-spacing: -0.1px;
}

.index_latest .events .content {
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    background: var(--black-50)
}

.index_latest .events .content .item-title {
    padding: 15px;
}

.index_latest .events .content .item-date {
    padding: 15px;
    display: flex;
    gap: 10px;
    align-items: center;
}
.index_latest .events .content .item-date i{
    font-size: 20px;
}

.index_latest .events .item:hover h4 {
    color: var(--primary-color-1)
}

@media (min-width: 520px) {
    .index_latest h3 {
        text-align: center;
        font-size: var(--h3-font-size);
        font-weight: 700
    }

    .index_latest .events .item .image .info {
        font-size: 12px;
    }

    .index_latest .events .item .image .info dl.time {
        gap: 5px;
    }

    .index_latest .events .item .image .info dl.time dd {
        font-size: 12px;
        padding: 2px 5px;
    }

    .index_latest .events .item .image .info .date {
        font-size: 10px;
        letter-spacing: -0.1px;
    }
}

@media (min-width: 768px) {
    .index_latest h3 {
        text-align: center;
        font-size: var(--h3-font-size);
        font-weight: 700
    }

    .index_latest .events .item .content {
        padding: 9px 5px
    }

    .index_latest .events .item .content .title {
        font-size: 13px
    }

    .index_latest .events .item .image .info {
        font-size: 12px;
    }

    .index_latest .events .item .image .info dl.time {
        gap: 10px;
    }

    .index_latest .events .item .image .info dl.time dd {
        font-size: 14px;
        padding: 5px;
    }

    .index_latest .events .item .image .info .date {
        font-size: 12px;
        letter-spacing: unset;
    }
}

@media (min-width: 1024px) {
    .index_latest .events {
        justify-content: center
    }

    .index_latest .events .item .image .info {
        font-size: 14px;
    }

    .index_latest .events .item .image .info dl.time dd {
        font-size: 16px;
    }

    .index_latest .events .item .image .info .date {
        font-size: 14px;
    }
}

@media (min-width: 1600px) {
    .index_latest {
        padding: 25px 85px
    }

    .index_latest .events .item .image .info {
        font-size: 16px;
    }

    .index_latest .events .item .image .info dl.time dd {
        font-size: 18px;
    }

    .index_latest .events .item .image .info .date {
        font-size: 16px;
    }
}