/* 活动详情公共选项卡：长标签在小屏保持单行并支持触控滚动。 */
.activity-sub-btn {
    display: flex;
    flex-wrap: nowrap;
    width: 100%;
    overflow-x: auto;
    overflow-y: hidden;
    margin-bottom: 0;
    scrollbar-width: thin;
    -webkit-overflow-scrolling: touch;
}

.activity-sub-btn > li {
    float: none;
    flex: 0 0 auto;
}

.activity-sub-btn > li > a {
    white-space: nowrap;
    letter-spacing: 0;
}

@media (max-width: 767px) {
    .activity-sub-btn {
        padding-bottom: 2px;
    }

    .activity-sub-btn > li > a {
        min-height: 42px;
        padding: 11px 14px;
        font-size: 14px;
        line-height: 20px;
    }
}

@media print {
    .activity-sub-btn {
        display: none !important;
    }
}
